minor formatting

This commit is contained in:
artemp 2016-05-17 12:44:46 +02:00
parent dc84943575
commit 6e326f035d

View file

@ -64,7 +64,7 @@ struct json_value : json_value_base
json_value(T && val)
: json_value_base(std::forward<T>(val)) {}
#else
// MSVC 2015 inheriting constructors is not working in this context (support is apparently planned)
// MSVC 2015 inheriting constructors is not working in this context (support is apparently planned)
using json_value_base::json_value_base;
#endif
};