diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-13 19:56:35 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-13 22:32:09 +0100 |
commit | 916060cb53fddb94f64b20d3616e7360c5e91f64 (patch) | |
tree | 4a2bcef4672b5e04b106f88cca3bec631b214c00 /src/util.h | |
parent | c093758b4688fb5bae2cc7727b6c9b52b824043e (diff) |
Capture flags in a class instead of a string and add conversion functions between them.
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -18,3 +18,8 @@ void append(T& a, const T& b) { a.insert(a.end(), b.begin(), b.end()); } + +//using cxx_flags = std::vector<ctor::cxx_flag>; +//using c_flags = std::vector<std::string>; +//using ld_flags= std::vector<std::string>; +//using asm_flags = std::vector<std::string>; |