Cantera  2.3.0
fmt.h
Go to the documentation of this file.
1 //! @file fmt.h Wrapper for either system-installed or local headers for fmt
2 #include "ct_defs.h"
3 
4 #if CT_USE_SYSTEM_FMT
5  #include "fmt/format.h"
6  #if defined(FMT_VERSION) && FMT_VERSION >= 40000
7  #include "fmt/printf.h"
8  #endif
9  #include "fmt/ostream.h"
10 #else
11  #include "cantera/ext/fmt/format.h"
12  #if defined(FMT_VERSION) && FMT_VERSION >= 40000
13  #include "cantera/ext/fmt/printf.h"
14  #endif
15  #include "cantera/ext/fmt/ostream.h"
16 #endif
This file contains definitions of terms that are used in internal routines and are unlikely to need m...