Skip to content
Snippets Groups Projects
  1. Apr 23, 2015
  2. Apr 21, 2015
  3. Apr 20, 2015
  4. Apr 18, 2015
  5. Apr 13, 2015
  6. Apr 02, 2015
  7. Mar 26, 2015
  8. Mar 13, 2015
  9. Mar 05, 2015
  10. Feb 25, 2015
  11. Jan 23, 2015
  12. Jan 16, 2015
  13. Jan 13, 2015
  14. Jan 06, 2015
  15. Oct 09, 2014
  16. Sep 25, 2014
  17. Aug 28, 2014
  18. Aug 20, 2014
  19. Aug 01, 2014
    • Przemyslaw Gorszkowski's avatar
      C++: nested class with enclosing template class · ba42ceb0
      Przemyslaw Gorszkowski authored
      
      The parent of instantiation of nested class of template class
      should be the instantiation of enclosing template class.
      
      To prevent the infinite loop for case with local typedef of enclosing
      template we should not change a parent of typedefed instatiation of
      enclosing template. Example:
      template <typename T>
      struct Enclosing
      {
        typedef Enclosing<T> EnclosingT;// first case
        struct Nested
        {
          typedef Enclosing<T> EnclosingT;// second case
        };
      };
      
      Task-number: QTCREATORBUG-11752
      Task-number: QTCREATORBUG-11999
      Change-Id: Iadd7b5ef73ee0c4881f59c9dabfe03339f55827b
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@digia.com>
      ba42ceb0
  20. Jul 31, 2014
  21. Jul 17, 2014
  22. Jul 08, 2014
  23. Jul 07, 2014
  24. Jun 13, 2014
  25. May 28, 2014
  26. May 23, 2014
  27. Apr 09, 2014
  28. Apr 04, 2014
  29. Mar 31, 2014
  30. Mar 26, 2014
  31. Mar 25, 2014
  32. Mar 12, 2014
  33. Feb 27, 2014
  34. Jan 08, 2014
Loading