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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Feature] C++17 support

AlCash07 opened this issue · comments

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'

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