aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/fmt/test/ranges-odr-test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/fmt/test/ranges-odr-test.cc')
-rw-r--r--thirdparty/fmt/test/ranges-odr-test.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/thirdparty/fmt/test/ranges-odr-test.cc b/thirdparty/fmt/test/ranges-odr-test.cc
deleted file mode 100644
index 6115dcb74..000000000
--- a/thirdparty/fmt/test/ranges-odr-test.cc
+++ /dev/null
@@ -1,18 +0,0 @@
-// Formatting library for C++ - the core API
-//
-// Copyright (c) 2012 - present, Victor Zverovich
-// All rights reserved.
-//
-// For the license information refer to format.h.
-
-#include <vector>
-
-#include "fmt/format.h"
-#include "fmt/ranges.h"
-#include "gtest/gtest.h"
-
-// call fmt::format from another translation unit to test ODR
-TEST(ranges_odr_test, format_vector) {
- auto v = std::vector<int>{1, 2, 3, 5, 7, 11};
- EXPECT_EQ(fmt::format("{}", v), "[1, 2, 3, 5, 7, 11]");
-}