Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions SilKit/cmake/SilKitBuildSettings.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ function(silkit_enable_warnings isOn)
/wd4389 # too many bogus signed/unsigned warnings in VS2017 Win32
)
endif()

if ("${SILKIT_HOST_ARCHITECTURE}" STREQUAL "x86")
set(_flags ${_flags}
/wd4244 # possible loss of data after conversion (fmt 12.1.0 produces these on 32-bit MSVC builds)
)
endif()
elseif(MINGW)
set(_flags
-pedantic
Expand Down
2 changes: 1 addition & 1 deletion ThirdParty/fmt
Submodule fmt updated 57 files
+1 −0 .clang-format
+4 −0 .clang-tidy
+3 −4 .github/workflows/doc.yml
+1 −1 .github/workflows/lint.yml
+102 −44 .github/workflows/linux.yml
+2 −2 .github/workflows/macos.yml
+3 −3 .github/workflows/scorecard.yml
+7 −11 .github/workflows/windows.yml
+2 −0 .gitignore
+17 −19 CMakeLists.txt
+352 −3 ChangeLog.md
+4 −3 README.md
+1 −1 doc/ChangeLog-old.md
+99 −20 doc/api.md
+11 −0 doc/get-started.md
+1 −1 doc/index.md
+6 −4 doc/syntax.md
+2 −2 include/fmt/args.h
+172 −124 include/fmt/base.h
+185 −277 include/fmt/chrono.h
+133 −106 include/fmt/color.h
+126 −77 include/fmt/compile.h
+64 −65 include/fmt/format-inl.h
+491 −340 include/fmt/format.h
+10 −10 include/fmt/os.h
+4 −3 include/fmt/ostream.h
+25 −34 include/fmt/printf.h
+38 −37 include/fmt/ranges.h
+246 −245 include/fmt/std.h
+32 −49 include/fmt/xchar.h
+2 −0 src/fmt.cc
+7 −10 src/format.cc
+10 −10 src/os.cc
+0 −1 support/bazel/.bazelversion
+0 −20 support/bazel/BUILD.bazel
+0 −6 support/bazel/MODULE.bazel
+0 −28 support/bazel/README.md
+0 −2 support/bazel/WORKSPACE.bazel
+18 −8 support/mkdocs
+1 −1 test/args-test.cc
+182 −157 test/base-test.cc
+156 −221 test/chrono-test.cc
+67 −1 test/color-test.cc
+2 −1 test/compile-fp-test.cc
+21 −0 test/compile-test.cc
+5 −5 test/format-impl-test.cc
+174 −81 test/format-test.cc
+4 −0 test/gtest-extra.h
+14 −3 test/mock-allocator.h
+3 −2 test/no-builtin-types-test.cc
+93 −10 test/os-test.cc
+6 −45 test/printf-test.cc
+11 −8 test/ranges-test.cc
+53 −0 test/scan.h
+96 −17 test/std-test.cc
+0 −11 test/util.h
+11 −100 test/xchar-test.cc
1 change: 1 addition & 0 deletions docs/changelog/versions/latest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@

- `cmake`: merged almost all internal CMake `INTERFACE` libraries into `I_SilKit`
- `third-party`: update `oatpp` to version 1.3.1
- `third-party`: update `fmt` to version 12.1.0
Loading