mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-27 08:40:14 +00:00
Simplify compile error tests.
This commit is contained in:
parent
8efc8ac075
commit
6abfb84808
@ -3,11 +3,17 @@
|
||||
include(CheckCXXSourceCompiles)
|
||||
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||||
|
||||
# Writing a wide character to a character stream Writer is forbidden.
|
||||
check_cxx_source_compiles("
|
||||
function (expect_compile_error code)
|
||||
check_cxx_source_compiles("
|
||||
#include \"format.cc\"
|
||||
int main() { fmt::Writer() << L'a'; }
|
||||
" WRITE_WCHAR_COMPILES)
|
||||
if (WRITE_WCHAR_COMPILES)
|
||||
error("No compile error for: fmt::Writer() << L'a'")
|
||||
endif ()
|
||||
int main() {
|
||||
${code}
|
||||
}
|
||||
" compiles)
|
||||
if (compiles)
|
||||
error("No compile error for: ${code}")
|
||||
endif ()
|
||||
endfunction ()
|
||||
|
||||
# Writing a wide character to a character stream Writer is forbidden.
|
||||
expect_compile_error("fmt::Writer() << L'a';")
|
||||
|
Loading…
Reference in New Issue
Block a user