mirror of
https://github.com/fmtlib/fmt.git
synced 2026-09-13 14:22:26 +08:00
15 lines
389 B
C
15 lines
389 B
C
// Formatting library for C++ - core API
|
|
//
|
|
// Copyright (c) 2012 - present, Victor Zverovich and {fmt} contributors
|
|
// All rights reserved.
|
|
//
|
|
// For the license information refer to format.h.
|
|
|
|
#include "base.h"
|
|
|
|
// Using fmt::format via fmt/core.h has been deprecated since version 11
|
|
// and now requires an explicit opt in.
|
|
#ifdef FMT_DEPRECATED_HEAVY_CORE
|
|
# include "format.h"
|
|
#endif
|