Merge pull request #13031 from parona-source/libfmt-11
Add support for libfmt-11
This commit is contained in:
commit
e1b1e4b4cf
|
@ -22,6 +22,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include "Common/CommonFuncs.h"
|
||||
#include "Common/CommonPaths.h"
|
||||
|
|
|
@ -111,7 +111,7 @@ struct fmt::formatter<ExpansionInterface::EXIDeviceType>
|
|||
constexpr formatter() : EnumFormatter(names) {}
|
||||
|
||||
template <typename FormatContext>
|
||||
auto format(const ExpansionInterface::EXIDeviceType& e, FormatContext& ctx)
|
||||
auto format(const ExpansionInterface::EXIDeviceType& e, FormatContext& ctx) const
|
||||
{
|
||||
if (e != ExpansionInterface::EXIDeviceType::None)
|
||||
{
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include "Common/Assert.h"
|
||||
#include "Common/CommonPaths.h"
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include "Common/CommonPaths.h"
|
||||
#include "Common/ENet.h"
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include <cmath>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QClipboard>
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
#include <algorithm>
|
||||
#include <sstream>
|
||||
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include "Common/CommonPaths.h"
|
||||
#include "Common/Config/Config.h"
|
||||
#include "Common/HttpRequest.h"
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
#include <string>
|
||||
#include <string_view>
|
||||
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include "Common/Assert.h"
|
||||
#include "Common/GL/GLContext.h"
|
||||
#include "Common/GL/GLExtensions/GLExtensions.h"
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include "Common/Assert.h"
|
||||
#include "Common/BitUtils.h"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
// Copyright 2014 Dolphin Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include <fmt/ranges.h>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "Common/BitField.h"
|
||||
|
|
Loading…
Reference in New Issue