Skip to content
Snippets Groups Projects
Commit a185a763 authored by Vakho Tsulaia's avatar Vakho Tsulaia
Browse files

Switched from `fmt::format` to `std::format`

parent b9360cb6
No related branches found
No related tags found
No related merge requests found
Pipeline #11791550 passed
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
################################################################################ ################################################################################
# Find the header and source files. # Find the header and source files.
file( GLOB SOURCES src/*.cpp fmt/*.h ) file( GLOB SOURCES src/*.cpp )
file( GLOB HEADERS GeoModelDBManager/*.h ) file( GLOB HEADERS GeoModelDBManager/*.h )
# Set up the library. # Set up the library.
......
This diff is collapsed.
// This file is only provided for compatibility and may be removed in future
// versions. Use fmt/base.h if you don't need fmt::format and fmt/format.h
// otherwise.
#include "format.h"
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -14,7 +14,6 @@ The core packages only depend on these third-party libraries: ...@@ -14,7 +14,6 @@ The core packages only depend on these third-party libraries:
- Eigen3, as the maths library (header-only) - Eigen3, as the maths library (header-only)
- SQLite, as the underlying format to store detector description data - SQLite, as the underlying format to store detector description data
- fmt, as formatting library (header-only)
......
...@@ -100,7 +100,6 @@ Additional external dependencies: ...@@ -100,7 +100,6 @@ Additional external dependencies:
- The open-source ("Community") version of the [Qt graphics framework](https://www.qt.io/) for the GUI, when the `Visualization` module is used - The open-source ("Community") version of the [Qt graphics framework](https://www.qt.io/) for the GUI, when the `Visualization` module is used
- The [Coin](https://github.com/coin3d/coin) and [SoQt](https://github.com/coin3d/soqt) libraries for 3D graphics, when the `Visualization` module is used - The [Coin](https://github.com/coin3d/coin) and [SoQt](https://github.com/coin3d/soqt) libraries for 3D graphics, when the `Visualization` module is used
- The [Geant4](https://geant4.web.cern.ch/) detector simulation toolkit, when the standalone detector simulation module `FullSimLight` is used - The [Geant4](https://geant4.web.cern.ch/) detector simulation toolkit, when the standalone detector simulation module `FullSimLight` is used
- The [`fmt`](https://github.com/fmtlib/fmt) formatting library for advanced string formatting, when the `I/O` module is used
---- ----
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment