Skip to content
  1. Dec 30, 2010
  2. Dec 26, 2010
  3. Dec 20, 2010
    • Douglas Gregor's avatar
      Introduce a new type, PackExpansionType, to capture types that are · d2fa766a
      Douglas Gregor authored
      pack expansions, e.g. given
      
        template<typename... Types> struct tuple;
      
        template<typename... Types>
        struct tuple_of_refs {
          typedef tuple<Types&...> types;
        };
      
      the type of the "types" typedef is a PackExpansionType whose pattern
      is Types&. 
      
      This commit introduces support for creating pack expansions for
      template type arguments, as above, but not for any other kind of pack
      expansion, nor for any form of instantiation.
      
      llvm-svn: 122223
      d2fa766a
  4. Dec 19, 2010
  5. Dec 17, 2010
  6. Dec 16, 2010
  7. Dec 15, 2010
  8. Dec 14, 2010
  9. Dec 11, 2010
  10. Dec 10, 2010
  11. Dec 09, 2010
  12. Dec 08, 2010
  13. Dec 07, 2010
  14. Dec 06, 2010
  15. Dec 05, 2010
Loading