diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-02 08:17:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-02 08:17:00 +0200 |
commit | e8945fbb15e472afca16fe1c3f36997742a2d64a (patch) | |
tree | 83d3d4bd7606b5ce62686afd5efb874e246fa443 /build/config | |
parent | 39623df224608e77b5a62dabd35b09783198bc87 (diff) |
Common types cleanup (strings, cstrings)
Diffstat (limited to 'build/config')
-rw-r--r-- | build/config/utility | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build/config/utility b/build/config/utility index c2209e4..8ab6afe 100644 --- a/build/config/utility +++ b/build/config/utility @@ -5,7 +5,6 @@ #ifndef BUILD_CONFIG_UTILITY #define BUILD_CONFIG_UTILITY -#include <vector> #include <string> #include <utility> // pair @@ -47,7 +46,7 @@ namespace build // template <typename T> void - append_options (std::vector<const char*>& args, T& s, const char* var) + append_options (cstrings& args, T& s, const char* var) { if (auto val = s[var]) { |