diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-01-30 11:25:42 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-01-30 11:25:42 +0200 |
commit | 67d799852492743a93a464002395ccb624514fb8 (patch) | |
tree | d46193a6c13f9cd64f9ff545b8b1f5fc441bab00 /libbuild2/variable.cxx | |
parent | f6319b258bb478e19d4a17852a8406e6b1119b87 (diff) |
Add std::{map, multimap} to types.hxx
Seeing that std::map is becoming a common Buildfile variable type.
Diffstat (limited to 'libbuild2/variable.cxx')
-rw-r--r-- | libbuild2/variable.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libbuild2/variable.cxx b/libbuild2/variable.cxx index 6f45e90..8cd6404 100644 --- a/libbuild2/variable.cxx +++ b/libbuild2/variable.cxx @@ -1841,17 +1841,17 @@ namespace build2 value_traits<vector<pair<string, optional<bool>>>>; template struct LIBBUILD2_DEFEXPORT - value_traits<std::map<string, string>>; + value_traits<map<string, string>>; template struct LIBBUILD2_DEFEXPORT - value_traits<std::map<string, optional<string>>>; + value_traits<map<string, optional<string>>>; template struct LIBBUILD2_DEFEXPORT - value_traits<std::map<optional<string>, string>>; + value_traits<map<optional<string>, string>>; template struct LIBBUILD2_DEFEXPORT - value_traits<std::map<string, optional<bool>>>; + value_traits<map<string, optional<bool>>>; template struct LIBBUILD2_DEFEXPORT - value_traits<std::map<project_name, dir_path>>; + value_traits<map<project_name, dir_path>>; } |