mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-16 16:28:09 +08:00
test: explicitly specify template arguments
toml::value is an alias of default parameters, so we need to avoid conflict of definitions between default and non-default parameters
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
#include <tuple>
|
#include <tuple>
|
||||||
|
|
||||||
using test_value_types = std::tuple<
|
using test_value_types = std::tuple<
|
||||||
toml::value,
|
toml::basic_value<toml::discard_comments>,
|
||||||
toml::basic_value<toml::preserve_comments>,
|
toml::basic_value<toml::preserve_comments>,
|
||||||
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
||||||
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
using test_value_types = std::tuple<
|
using test_value_types = std::tuple<
|
||||||
toml::value,
|
toml::basic_value<toml::discard_comments>,
|
||||||
toml::basic_value<toml::preserve_comments>,
|
toml::basic_value<toml::preserve_comments>,
|
||||||
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
||||||
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
using test_value_types = std::tuple<
|
using test_value_types = std::tuple<
|
||||||
toml::value,
|
toml::basic_value<toml::discard_comments>,
|
||||||
toml::basic_value<toml::preserve_comments>,
|
toml::basic_value<toml::preserve_comments>,
|
||||||
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
||||||
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
using test_value_types = std::tuple<
|
using test_value_types = std::tuple<
|
||||||
toml::value,
|
toml::basic_value<toml::discard_comments>,
|
||||||
toml::basic_value<toml::preserve_comments>,
|
toml::basic_value<toml::preserve_comments>,
|
||||||
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
toml::basic_value<toml::discard_comments, std::map, std::deque>,
|
||||||
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
toml::basic_value<toml::preserve_comments, std::map, std::deque>
|
||||||
|
Reference in New Issue
Block a user