aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2015-06-07 12:57:59 +0300
committerOrgad Shaneh <orgads@gmail.com>2015-06-15 12:53:10 +0000
commit5aa4a4b75b70470ad0e0624695bd12178ea1bbad (patch)
tree4f00099ecc8110dd390697e194276dc277326b0f /dist
parent2fc604e699f6898cbfe4f516df4696b8a60f247b (diff)
Changelog: Document recent C++ changes
Change-Id: I763ef696c16151b530fd2ca72eebcb84189c1893 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'dist')
-rw-r--r--dist/changes-3.5.0.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/dist/changes-3.5.0.md b/dist/changes-3.5.0.md
index bd54a1a168..f2424ffb10 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<class T> using U = Temp<T>` (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<std::string>`)
QML Support