diff options
Diffstat (limited to 'src/util.cc')
| -rw-r--r-- | src/util.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util.cc b/src/util.cc index 7ca9c11..0655dfa 100644 --- a/src/util.cc +++ b/src/util.cc @@ -71,6 +71,16 @@ ctor::language languageFromExtension(const std::filesystem::path& file) return ctor::language::assembler; } +// if(ext == ".h" || +// ext == ".hh" || +// ext == ".hpp" || +// ext == ".hxx" || +// ext == ".tpp" || +// ext == ".ipp") +// { +// return ctor::language::header; +// } + std::cerr << "Could not deduce language from " << file.string() << "\n"; exit(1); return {}; |
