Use kAudioObjectPropertyElementMaster on macOS for compatibility
[openal-soft.git] / fmt-11.0.2 / test / header-only-test.cc
blob8c99f857bbf7a172376a3c56cdc73774842ae441
1 // Header-only configuration test
3 #include "fmt/base.h"
4 #include "fmt/ostream.h"
5 #include "gtest/gtest.h"
7 #ifndef FMT_HEADER_ONLY
8 # error "Not in the header-only mode."
9 #endif
11 TEST(header_only_test, format) { EXPECT_EQ(fmt::format("foo"), "foo"); }