Skip to content
  1. Jan 25, 2011
  2. Jan 24, 2011
  3. Jan 20, 2011
  4. Jan 19, 2011
  5. Jan 18, 2011
  6. Jan 17, 2011
  7. Jan 15, 2011
  8. Jan 14, 2011
  9. Jan 13, 2011
  10. Jan 12, 2011
  11. Jan 11, 2011
  12. Jan 10, 2011
  13. Jan 08, 2011
  14. Jan 04, 2011
  15. Jan 03, 2011
    • Douglas Gregor's avatar
      Implement support for pack expansions whose pattern is a non-type · e8e9dd62
      Douglas Gregor authored
      template argument (described by an expression, of course). For
      example:
      
        template<int...> struct int_tuple { };
      
        template<int ...Values>
        struct square {
          typedef int_tuple<(Values*Values)...> type;
        };
      
      It also lays the foundation for pack expansions in an initializer-list.
        
      
      llvm-svn: 122751
      e8e9dd62
Loading