fmt/include/fmt/base-compat.h
Victor Zverovich 5543473f5e Move the compatibility header aside
Free up core.h so base.h can be renamed back with its history preserved.
2026-09-07 17:05:32 -07:00

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