Skip to content

Commit

Permalink
cc: make keep_intermediate const
Browse files Browse the repository at this point in the history
  • Loading branch information
atirut-w committed Aug 14, 2024
1 parent 35e389e commit 36f6339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cc/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int main(int argc, char *argv[])
auto args = parse_args(argc, argv);
const auto source = args->get<filesystem::path>("source");
filesystem::path intermediate = source;
auto keep_intermediate = args->get<bool>("--keep-intermediate");
const auto keep_intermediate = args->get<bool>("--keep-intermediate");

string clang_preamble = "exec -a zdk-cc clang -nostdinc -nostdlib ";
for (auto &include : args->get<vector<filesystem::path>>("--include"))
Expand Down

0 comments on commit 36f6339

Please sign in to comment.