- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Subj. Or how to enable the "--uliterals" EDG front end option.
Cheers
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This option does not seem to be supported by Intel compiler. You may try /Qoption,cpp,"--uliterals" to the Intel C++ compiler front end.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks!
It seems that unicode literals are supported, but char16_t/char32_t as keywords are not:
templatevoid show_type(T);
void test()
{
char16_t u = u'1'; // char16t is undefined
show_type(u'1'); // unsigned short
show_type(U'1'); // unsigned long
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As of 11.1 release, those new types (char16_t etc) are not supported, yet.
We're aware of them though and will support those new types/features in the future.
We're aware of them though and will support those new types/features in the future.
Jennifer

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page