diff options
Diffstat (limited to 'libbuild2/variable.cxx')
-rw-r--r-- | libbuild2/variable.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbuild2/variable.cxx b/libbuild2/variable.cxx index 47703da..6f45e90 100644 --- a/libbuild2/variable.cxx +++ b/libbuild2/variable.cxx @@ -1838,6 +1838,9 @@ namespace build2 value_traits<vector<pair<optional<string>, string>>>; template struct LIBBUILD2_DEFEXPORT + value_traits<vector<pair<string, optional<bool>>>>; + + template struct LIBBUILD2_DEFEXPORT value_traits<std::map<string, string>>; template struct LIBBUILD2_DEFEXPORT @@ -1847,5 +1850,8 @@ namespace build2 value_traits<std::map<optional<string>, string>>; template struct LIBBUILD2_DEFEXPORT + value_traits<std::map<string, optional<bool>>>; + + template struct LIBBUILD2_DEFEXPORT value_traits<std::map<project_name, dir_path>>; } |