aboutsummaryrefslogtreecommitdiff
path: root/build2/variable.txx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2016-06-28 13:00:14 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2016-07-01 15:46:53 +0300
commitec7b7e37ce97d25adc209befb2c12cf16eb06ef1 (patch)
treebcb5b911b0d6579cf1d8c2e6ca4ac13383ca08f9 /build2/variable.txx
parent86db4fb7388285adc24e3aa6eb3f7ec68efd15f4 (diff)
Port to MSVC
Diffstat (limited to 'build2/variable.txx')
-rw-r--r--build2/variable.txx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/variable.txx b/build2/variable.txx
index 6d3121a..a3511d4 100644
--- a/build2/variable.txx
+++ b/build2/variable.txx
@@ -275,7 +275,7 @@ namespace build2
value_traits<T>::type_name) + 's';
template <typename T>
- const value_type value_traits<vector<T>>::value_type
+ const value_type value_traits<vector<T>>::value_type = // VC 19 wants =.
{
value_traits<vector<T>>::type_name.c_str (),
sizeof (vector<T>),
@@ -436,7 +436,7 @@ namespace build2
value_traits<V>::type_name + "_map";
template <typename K, typename V>
- const value_type value_traits<std::map<K, V>>::value_type
+ const value_type value_traits<std::map<K, V>>::value_type = // VC 19 wants =.
{
value_traits<map<K, V>>::type_name.c_str (),
sizeof (map<K, V>),