Set clang-format standard to C++11 (#1820)

This commit is contained in:
Benoit Blanchon
2023-02-16 11:51:02 +01:00
parent daa87e12dc
commit 33a4773fbd
16 changed files with 32 additions and 32 deletions

View File

@ -17,7 +17,7 @@ template <typename TFloat>
void check(TFloat input, const std::string& expected) {
std::string output;
Writer<std::string> sb(output);
TextFormatter<Writer<std::string> > writer(sb);
TextFormatter<Writer<std::string>> writer(sb);
writer.writeFloat(input);
REQUIRE(writer.bytesWritten() == output.size());
CHECK(expected == output);