diff options
| author | 2019-06-03 15:49:04 -0400 | |
|---|---|---|
| committer | 2019-06-03 15:49:04 -0400 | |
| commit | 00f0827a26f5dc13ff90920975fe0cf749b06bb3 (patch) | |
| tree | 32d52cbc53381ba799fc6c9dd3da6f5b10ccbb17 /src/input_common/sdl/sdl_impl.cpp | |
| parent | input_common/sdl/sdl_impl: Silence sign conversion warnings (diff) | |
| download | yuzu-00f0827a26f5dc13ff90920975fe0cf749b06bb3.tar.gz yuzu-00f0827a26f5dc13ff90920975fe0cf749b06bb3.tar.xz yuzu-00f0827a26f5dc13ff90920975fe0cf749b06bb3.zip | |
input_common/sdl/sdl_impl: Use nested namespace specifiers where applicable
Diffstat (limited to 'src/input_common/sdl/sdl_impl.cpp')
| -rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index 0b69bfede..5b849283a 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp | |||
| @@ -23,9 +23,7 @@ | |||
| 23 | #include "core/frontend/input.h" | 23 | #include "core/frontend/input.h" |
| 24 | #include "input_common/sdl/sdl_impl.h" | 24 | #include "input_common/sdl/sdl_impl.h" |
| 25 | 25 | ||
| 26 | namespace InputCommon { | 26 | namespace InputCommon::SDL { |
| 27 | |||
| 28 | namespace SDL { | ||
| 29 | 27 | ||
| 30 | static std::string GetGUID(SDL_Joystick* joystick) { | 28 | static std::string GetGUID(SDL_Joystick* joystick) { |
| 31 | SDL_JoystickGUID guid = SDL_JoystickGetGUID(joystick); | 29 | SDL_JoystickGUID guid = SDL_JoystickGetGUID(joystick); |
| @@ -667,5 +665,4 @@ SDLState::Pollers SDLState::GetPollers(InputCommon::Polling::DeviceType type) { | |||
| 667 | return pollers; | 665 | return pollers; |
| 668 | } | 666 | } |
| 669 | 667 | ||
| 670 | } // namespace SDL | 668 | } // namespace InputCommon::SDL |
| 671 | } // namespace InputCommon | ||