Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 3.6.0, Qt Creator 4.0.0-rc1
-
Visual Studio 2015 Update 1, Qt Creator 3.6.0
Description
Qt Creator with the clang code model and Visual Studio 2015 as compiler does not acknowledge char16_t, char32_t , std::u16string, std::u32string. E.g.
#include <string> int main(int argc, char *argv[]) { std::string str; char16_t c1; // error: unknown type named char16_t char32_t c2; // error: unknown type named char32_t std::u16string str16; // error: no type named 'u16string' in namespace 'std'. std::u32string str32; // error: no type named 'u32string' in namespace 'std'. }
Attachments
Issue Links
- relates to
-
QTCREATORBUG-15940 Clang Static Analyzer reporting "error: use of undeclared identifier 'char16_t'" in MSVC 2015 headers
- Closed