From 5aa4a4b75b70470ad0e0624695bd12178ea1bbad Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Sun, 7 Jun 2015 12:57:59 +0300 Subject: [PATCH] Changelog: Document recent C++ changes Change-Id: I763ef696c16151b530fd2ca72eebcb84189c1893 Reviewed-by: Eike Ziller --- dist/changes-3.5.0.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/dist/changes-3.5.0.md b/dist/changes-3.5.0.md index bd54a1a1686..f2424ffb103 100644 --- a/dist/changes-3.5.0.md +++ b/dist/changes-3.5.0.md @@ -84,6 +84,19 @@ C++ Support * Fixed expanding items in class view with double-click (QTCREATORBUG-2536) * Fixed code folding issues after missing closing braces +* Fixed resolving of decltype (QTCREATORBUG-14483) +* Fixed resolving of template using alias + For example: `template using U = Temp` (QTCREATORBUG-14480) +* Fixed some issues related to template lookup (QTCREATORBUG-14141, + QTCREATORBUG-14218, QTCREATORBUG-14237) +* Fixed resolving of partial and full template specialization (QTCREATORBUG-14034) +* Partially fixed STL containers (QTCREATORBUG-8937, QTCREATORBUG-8922) + * GCC implementation of `std::map`, `std::unique_ptr` (and other pointer wrappers) + and `std::vector` are known to work + * Known limitations: + * MSVC implementation is not supported + * types that contain a typedef for `pointer` are not supported + (For example: `std::unique_ptr`) QML Support