Commit 245a69d5 authored by Niels Lohmann's avatar Niels Lohmann

💄 ran clang-tidy

parent 9755cc75
This diff is collapsed.
This diff is collapsed.
...@@ -80,7 +80,7 @@ struct my_allocator : std::allocator<T> ...@@ -80,7 +80,7 @@ struct my_allocator : std::allocator<T>
} }
else else
{ {
::new(reinterpret_cast<void*>(p)) T(std::forward<Args>(args)...); ::new (reinterpret_cast<void*>(p)) T(std::forward<Args>(args)...);
} }
} }
......
...@@ -912,7 +912,7 @@ TEST_CASE("constructors") ...@@ -912,7 +912,7 @@ TEST_CASE("constructors")
SECTION("array") SECTION("array")
{ {
json j { {"one", 1}, {"two", 1u}, {"three", 2.2}, {"four", false} , 13 }; json j { {"one", 1}, {"two", 1u}, {"three", 2.2}, {"four", false}, 13 };
CHECK(j.type() == json::value_t::array); CHECK(j.type() == json::value_t::array);
} }
} }
......
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