Skip to content

Commit da58721

Browse files
committed
Upgrade to fmt 10.0.0
Add the header that is now required and stop treating warnings as errors so we can get the project to compile. See issue #8.
1 parent 7906ff0 commit da58721

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

cmake/CompilerWarnings.cmake

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
function(set_project_warnings project_name)
2-
option(NDR_WARNINGS_AS_ERRORS "Treat Compiler warnings as errors" ON)
2+
# The use of sub-modules makes this option frustrating to use, so default to OFF
3+
option(NDR_WARNINGS_AS_ERRORS "Treat Compiler warnings as errors" OFF)
34

45
# I don't currently have access to a windows machine to test these,
56
# so rather than trial and error pushing to trigger appveyor and check

external/fmt

Submodule fmt updated 83 files

src/massTable.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
#include <fmt/os.h>
88
#include <fmt/ostream.h>
9+
#include <fmt/std.h>
910

1011
#include <algorithm>
1112
#include <array>

0 commit comments

Comments
 (0)