mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|