mirror of
https://github.com/fmtlib/fmt.git
synced 2025-06-25 01:11:40 +02:00
Remove core.h
from README (#4422)
This commit is contained in:
@ -47,7 +47,7 @@ Try {fmt} in [Compiler Explorer](https://godbolt.org/z/8Mx1EW73v).
|
|||||||
hundred million integers to strings per
|
hundred million integers to strings per
|
||||||
second](http://www.zverovich.net/2020/06/13/fast-int-to-string-revisited.html)
|
second](http://www.zverovich.net/2020/06/13/fast-int-to-string-revisited.html)
|
||||||
- Small code size both in terms of source code with the minimum
|
- Small code size both in terms of source code with the minimum
|
||||||
configuration consisting of just three files, `core.h`, `format.h`
|
configuration consisting of just three files, `base.h`, `format.h`
|
||||||
and `format-inl.h`, and compiled code; see [Compile time and code
|
and `format-inl.h`, and compiled code; see [Compile time and code
|
||||||
bloat](#compile-time-and-code-bloat)
|
bloat](#compile-time-and-code-bloat)
|
||||||
- Reliability: the library has an extensive set of
|
- Reliability: the library has an extensive set of
|
||||||
@ -74,7 +74,7 @@ See the [documentation](https://fmt.dev) for more details.
|
|||||||
**Print to stdout** ([run](https://godbolt.org/z/Tevcjh))
|
**Print to stdout** ([run](https://godbolt.org/z/Tevcjh))
|
||||||
|
|
||||||
``` c++
|
``` c++
|
||||||
#include <fmt/core.h>
|
#include <fmt/base.h>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
fmt::print("Hello, world!\n");
|
fmt::print("Hello, world!\n");
|
||||||
|
Reference in New Issue
Block a user