mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 17:18:53 +00:00
Reformat all the things!
This commit is contained in:
parent
d27e85e9d7
commit
40bb9974f2
179 changed files with 1888 additions and 991 deletions
|
@ -34,7 +34,12 @@ enum class System
|
|||
};
|
||||
|
||||
constexpr std::array<LayerType, 7> SEARCH_ORDER{{
|
||||
LayerType::CurrentRun, LayerType::CommandLine, LayerType::Movie, LayerType::Netplay,
|
||||
LayerType::LocalGame, LayerType::GlobalGame, LayerType::Base,
|
||||
LayerType::CurrentRun,
|
||||
LayerType::CommandLine,
|
||||
LayerType::Movie,
|
||||
LayerType::Netplay,
|
||||
LayerType::LocalGame,
|
||||
LayerType::GlobalGame,
|
||||
LayerType::Base,
|
||||
}};
|
||||
}
|
||||
|
|
|
@ -69,6 +69,7 @@ public:
|
|||
Section(iterator begin_, iterator end_) : m_begin(begin_), m_end(end_) {}
|
||||
iterator begin() const { return m_begin; }
|
||||
iterator end() const { return m_end; }
|
||||
|
||||
private:
|
||||
iterator m_begin;
|
||||
iterator m_end;
|
||||
|
@ -81,6 +82,7 @@ public:
|
|||
ConstSection(iterator begin_, iterator end_) : m_begin(begin_), m_end(end_) {}
|
||||
iterator begin() const { return m_begin; }
|
||||
iterator end() const { return m_end; }
|
||||
|
||||
private:
|
||||
iterator m_begin;
|
||||
iterator m_end;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue