We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ cat t10.c #define X(x,y) x y #define STR_(x) #x #define STR(x) STR_(x) STR(X(Y,Y)) $ ./simplecpp t10.c "YY"
The whitespace is required by the standard.
Extra: running ./simplecpp built with g++ or clang++ may lead to exit status 127:
./simplecpp
$ g++ -o simplecpp main.cpp simplecpp.cpp && echo OK && ./simplecpp OK # exit status 127 $ g++ --version g++ (GCC) 11.1.0 $ clang++ -o simplecpp main.cpp simplecpp.cpp && echo OK && ./simplecpp OK # exit status 127 $ clang++ --version clang version 8.0.1 (tags/RELEASE_801/final) $ LLVM/12.0.0/bin/clang++ -o simplecpp main.cpp simplecpp.cpp && ./simplecpp Syntax: simplecpp [options] filename -DNAME Define NAME. -IPATH Include path. -include=FILE Include FILE. -UNAME Undefine NAME. $ uname -a CYGWIN_NT-10.0 xxx 3.2.0(0.340/5/3) 2021-03-29 08:42 x86_64 Cygwin
The text was updated successfully, but these errors were encountered:
Have stringize operator preserve standard required whitespace (danmar…
f017409
…#241)
912d924
…#241) / Fix an integer truncation warning in testrunner
No branches or pull requests
The whitespace is required by the standard.
Extra: running
./simplecpp
built with g++ or clang++ may lead to exit status 127:The text was updated successfully, but these errors were encountered: