From bcc0c19d29fa543ae5689ebe966bea0fa8240a8b Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Lacaze Date: Thu, 2 Sep 2021 17:02:45 +0200 Subject: [PATCH] Fix comments --- test/ranges-odr-test.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/ranges-odr-test.cc b/test/ranges-odr-test.cc index 3ecba1b9..9d6cd1ff 100644 --- a/test/ranges-odr-test.cc +++ b/test/ranges-odr-test.cc @@ -4,10 +4,6 @@ // All rights reserved. // // For the license information refer to format.h. -// -// Copyright (c) 2018 - present, Remotion (Igor Schulz) -// All Rights Reserved -// {fmt} support for ranges, containers and types tuple interface. #include "fmt/ranges.h" @@ -15,6 +11,7 @@ #include "gtest/gtest.h" +// call fmt::format from another translation unit to test ODR TEST(ranges_odr_test, format_vector) { auto v = std::vector{1, 2, 3, 5, 7, 11}; EXPECT_EQ(fmt::format("{}", v), "[1, 2, 3, 5, 7, 11]");