repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use kAudioObjectPropertyElementMaster on macOS for compatibility
[openal-soft.git]
/
fmt-11.0.2
/
test
/
header-only-test.cc
blob
8c99f857bbf7a172376a3c56cdc73774842ae441
1
// Header-only configuration test
2
3
#include
"fmt/base.h"
4
#include
"fmt/ostream.h"
5
#include
"gtest/gtest.h"
6
7
#ifndef FMT_HEADER_ONLY
8
# error
"Not in the header-only mode."
9
#endif
10
11
TEST
(
header_only_test
,
format
) {
EXPECT_EQ
(
fmt
::
format
(
"foo"
),
"foo"
); }