Skip to content
Snippets Groups Projects
  1. Oct 29, 2013
  2. Oct 24, 2013
  3. Oct 23, 2013
  4. Oct 22, 2013
  5. Oct 18, 2013
  6. Oct 17, 2013
    • Przemyslaw Gorszkowski's avatar
      C++: fix endless loop during template instantiation · 5be56c07
      Przemyslaw Gorszkowski authored
      
      This is the first phase of fixing bug QTCREATORBUG-10320.
      This change resolves typedefs of template parameters(and resolves
      problem with endless loop).
      
      The next step will be matching appropriate template specialization
      (this is needed to solve problem with missing code completion).
      
      Missing matching: template specialization with the same parameters,
      e.g.:
      template <class T1, class T2, class T3>
      class T
      {
      };
      
      template <class T1, class T2>
      class T<T1, T2, T2>
      {
      };
      
      Task-number: QTCREATORBUG-10320
      Change-Id: Icb6b539c021b2a67a66db9011a2e627f7d96526b
      Reviewed-by: default avatarPrzemyslaw Gorszkowski <pgorszkowski@gmail.com>
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@digia.com>
      5be56c07
  7. Oct 15, 2013
  8. Oct 10, 2013
  9. Oct 09, 2013
  10. Oct 08, 2013
  11. Oct 07, 2013
    • Nikolai Kosjar's avatar
      CppTools: Adapt C++ locator names to reality · 872bfb70
      Nikolai Kosjar authored
      
      The new names are:
      
      * C++ Methods in Current Document -> C++ Symbols in Current Document
      * C++ Classes and Methods -> C++ Classes, Enums and Functions
      * C++ Methods and Functions -> C++ Functions
      
      Further notes:
      
      * "C++ Classes" stays the same.
      * The term "Methods" was removed since "Functions" says it all (member
        functions, non-member functions). Because of this, the "m" shortcut
        for this filter does not fit so well to the name anymore.
      * "C++ Symbols in..." - "Symbols" means the same as in the C++ Search
        dialog: classes, enums, functions and declarations
      
      Change-Id: I8e5f410f2dcb1fafe83d0a1c8607f4c17eabbb8c
      Reviewed-by: default avatarLeena Miettinen <riitta-leena.miettinen@digia.com>
      872bfb70
  12. Oct 06, 2013
  13. Oct 02, 2013
  14. Oct 01, 2013
  15. Sep 30, 2013
  16. Sep 26, 2013
  17. Sep 25, 2013
  18. Sep 23, 2013
  19. Sep 20, 2013
    • Orgad Shaneh's avatar
      Mute MSVC safety warnings · 5dc58306
      Orgad Shaneh authored
      
      Botan:
      C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\xutility:2227:
      warning: C4996: 'std::_Copy_impl': Function call with parameters that may be
      unsafe - this call relies on the caller to check that the passed values are
      correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See
      documentation on how to use Visual C++ 'Checked Iterators'
      
      c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xutility:2212:
      see declaration of 'std::_Copy_impl'
      
      D:\dev\qt-creator\src\libs\3rdparty\botan\botan.cpp:7248: see reference
      to function template instantiation
      '_OutIt std::copy<const Botan::u32bit*,T*>(_InIt,_InIt,_OutIt)' being compiled
      with
      [
          _OutIt=Botan::word *,
          T=Botan::word,
          _InIt=const Botan::u32bit *
      ]
      
      CppTools:
      C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\xutility:2873:
      warning: C4996: 'std::_Mismatch1': Function call with parameters that may be
      unsafe - this call relies on the caller to check that the passed values are
      correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See
      documentation on how to use Visual C++ 'Checked Iterators'
      
      C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xutility:2856:
      see declaration of 'std::_Mismatch1'
      
      D:\dev\qt-creator\src\plugins\cpptools\symbolfinder.cpp:388: see reference to
      function template instantiation 'std::pair<_Ty1,_Ty2>
      std::mismatch<QString::const_iterator,QString::const_iterator>(_InIt1,_InIt1,_InIt2)'
      being compiled
      with
      [
          _Ty1=QString::const_iterator,
          _Ty2=QString::const_iterator,
          _InIt1=QString::const_iterator,
          _InIt2=QString::const_iterator
      ]
      
      Change-Id: I09a477e755c4555101b064271f10c08a69576e33
      Reviewed-by: default avatarChristian Kandeler <christian.kandeler@digia.com>
      Reviewed-by: default avatarDavid Schulz <david.schulz@digia.com>
      Reviewed-by: default avatarNikolai Kosjar <nikolai.kosjar@digia.com>
      5dc58306
    • hjk's avatar
      Apply static pattern to TextEditorSetting · ca15d0aa
      hjk authored
      
      Change-Id: I4e6f573d893c0aa2bb4ca9812fc8db2961dac172
      Reviewed-by: default avatarTobias Hunger <tobias.hunger@digia.com>
      ca15d0aa
  20. Sep 13, 2013
Loading