Commit 7d426e0b authored by Dominik Charousset's avatar Dominik Charousset

Use auto consequently

parent 36131d16
...@@ -106,7 +106,7 @@ log_type make_log(Ts&&... xs) { ...@@ -106,7 +106,7 @@ log_type make_log(Ts&&... xs) {
} }
// Tests basic functionality. // Tests basic functionality.
const char* ini0 = R"( const auto ini0 = R"(
[1group] [1group]
1value=321 1value=321
[_foo] [_foo]
...@@ -205,7 +205,7 @@ const auto ini0_log = make_log( ...@@ -205,7 +205,7 @@ const auto ini0_log = make_log(
// clang-format on // clang-format on
// Tests nested parameters. // Tests nested parameters.
const char* ini1 = R"( const auto ini1 = R"(
foo { foo {
bar = { bar = {
value1 = 1 value1 = 1
...@@ -242,11 +242,11 @@ const auto ini1_log = make_log( ...@@ -242,11 +242,11 @@ const auto ini1_log = make_log(
); );
// clang-format on // clang-format on
const char* ini2 = "#"; const auto ini2 = "#";
const auto ini2_log = make_log(); const auto ini2_log = make_log();
const char* ini3 = "; foobar\n!"; const auto ini3 = "; foobar\n!";
const auto ini3_log = make_log(); const auto ini3_log = make_log();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment