slycelote / caide-cpp-inliner

Transform a C++ program consisting of multiple source files and headers into a single self-contained source file without any external dependencies (except for standard system headers). Unused code is not included in the resulting file.
Other
32 stars 12 forks source link

[Feature] C++17 support #13

Closed AlCash07 closed 6 years ago

AlCash07 commented 6 years ago

Is there a plan to support C++17? Currently, I get the following error right away when I change 14 into 17 error: invalid value 'c++17' in '-std=c++17'

AlCash07 commented 6 years ago

Looks like I have to use '-std=c++1z' for now.