I'm having a problem using #include <cuchar>
in my C++ program. When I use that line, I get the error
Lexical or Preprocessor Error 'cuchar' file not found.
I've tried setting my project to GNU C++ 11, C++ 11, GNU C++ 14, and C++ 14. Any advice would be appreciated.
EDIT: The entirety of my code is as follows:
#include <iostream>
#include <cuchar>
using namespace std;
int main() {
char16_t pirate = u'\u00AE';
cout << pirate;
return 0;
}
As to the compiler, I believe that it is mentioned above that I used GNU C++ 11, GNU C++ 14, C++ 11, and C++ 14.