Skip to content

Instantly share code, notes, and snippets.

@yutannihilation
Last active January 23, 2021 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yutannihilation/c5c04ab7ccd9c25cb0a1bf632b26f927 to your computer and use it in GitHub Desktop.
Save yutannihilation/c5c04ab7ccd9c25cb0a1bf632b26f927 to your computer and use it in GitHub Desktop.
PS C:\Users\...\Documents\tmp> C:\rtools40\mingw64\bin\g++ -std=gnu++11 -O3 .\main.cpp
PS C:\Users\...\Documents\tmp> .\a.exe
PS C:\Users\...\Documents\tmp>
#include <regex>
int main() {
setlocale(LC_ALL, "Japanese");
std::regex reg("0-9");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment