Commit 8e79917d authored by Anthony VH's avatar Anthony VH

Fix clang-tidy complaints.

parent 322bc99d
...@@ -140,7 +140,7 @@ struct NotSerializableData ...@@ -140,7 +140,7 @@ struct NotSerializableData
struct NonDefaultConstructible struct NonDefaultConstructible
{ {
explicit NonDefaultConstructible (int x) : x(x) { } explicit NonDefaultConstructible (int a) : x(a) { }
int x; int x;
}; };
...@@ -154,7 +154,7 @@ struct adl_serializer<NonDefaultConstructible> ...@@ -154,7 +154,7 @@ struct adl_serializer<NonDefaultConstructible>
return NonDefaultConstructible(j.get<int>()); return NonDefaultConstructible(j.get<int>());
} }
}; };
} } // namespace nlohmann
TEST_CASE("regression tests 2") TEST_CASE("regression tests 2")
......
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