mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-01 08:48:35 +00:00
InputCommon/FunctionExpression: Collapse namespaces
Since we target C++17, we can collapse the namespaces into a single declaration specifier.
This commit is contained in:
parent
6586ecc7a8
commit
cb8fbe872e
2 changed files with 4 additions and 10 deletions
|
@ -12,9 +12,7 @@
|
|||
#include "InputCommon/ControlReference/ExpressionParser.h"
|
||||
#include "InputCommon/ControlReference/FunctionExpression.h"
|
||||
|
||||
namespace ciface
|
||||
{
|
||||
namespace ExpressionParser
|
||||
namespace ciface::ExpressionParser
|
||||
{
|
||||
class FunctionExpression : public Expression
|
||||
{
|
||||
|
@ -51,5 +49,4 @@ private:
|
|||
|
||||
std::unique_ptr<FunctionExpression> MakeFunctionExpression(std::string name);
|
||||
|
||||
} // namespace ExpressionParser
|
||||
} // namespace ciface
|
||||
} // namespace ciface::ExpressionParser
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue