mirror of
https://github.com/open-goal/jak-project
synced 2026-06-06 19:52:01 -04:00
647282d896
Fixes #3886
12 lines
253 B
C++
Vendored
Generated
12 lines
253 B
C++
Vendored
Generated
// Header-only configuration test
|
|
|
|
#include "fmt/base.h"
|
|
#include "fmt/ostream.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
#ifndef FMT_HEADER_ONLY
|
|
# error "Not in the header-only mode."
|
|
#endif
|
|
|
|
TEST(header_only_test, format) { EXPECT_EQ(fmt::format("foo"), "foo"); }
|