input_common/sdl/sdl_impl: Use nested namespace specifiers where applicable
This commit is contained in:
parent
e70f16fff7
commit
00f0827a26
|
@ -23,9 +23,7 @@
|
||||||
#include "core/frontend/input.h"
|
#include "core/frontend/input.h"
|
||||||
#include "input_common/sdl/sdl_impl.h"
|
#include "input_common/sdl/sdl_impl.h"
|
||||||
|
|
||||||
namespace InputCommon {
|
namespace InputCommon::SDL {
|
||||||
|
|
||||||
namespace SDL {
|
|
||||||
|
|
||||||
static std::string GetGUID(SDL_Joystick* joystick) {
|
static std::string GetGUID(SDL_Joystick* joystick) {
|
||||||
SDL_JoystickGUID guid = SDL_JoystickGetGUID(joystick);
|
SDL_JoystickGUID guid = SDL_JoystickGetGUID(joystick);
|
||||||
|
@ -667,5 +665,4 @@ SDLState::Pollers SDLState::GetPollers(InputCommon::Polling::DeviceType type) {
|
||||||
return pollers;
|
return pollers;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace SDL
|
} // namespace InputCommon::SDL
|
||||||
} // namespace InputCommon
|
|
||||||
|
|
Reference in New Issue