diff options
Diffstat (limited to 'src/tools.cc')
-rw-r--r-- | src/tools.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools.cc b/src/tools.cc index f0b6d4e..e61a749 100644 --- a/src/tools.cc +++ b/src/tools.cc @@ -10,15 +10,15 @@ using namespace ctor; -ToolChain getToolChain(OutputSystem system) +ToolChain getToolChain(ctor::output_system system) { std::string compiler; switch(system) { - case OutputSystem::Host: + case ctor::output_system::host: compiler = getConfiguration(cfg::host_cxx, "g++"); break; - case OutputSystem::Build: + case ctor::output_system::build: compiler = getConfiguration(cfg::build_cxx, "g++"); break; } |