diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-09-24 01:19:49 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-09-24 02:33:15 +0200 |
commit | 6def32d643b9be6dba8f5e355e3dd75d82814bed (patch) | |
tree | 7176c6ff1e3dc4f1461250b7010562bfb5c79f29 /platform/uwp/SCsub | |
parent | e92064fbef13e651722ee47ae826de080757bc2e (diff) |
Replace `#pragma once` by traditional include guards for consistency
`#pragma once` was used in a few files, yet we settled on using
traditional include guards instead.
The PooledList template comment was also moved to allow editors
such as Visual Studio Code to display the comment when hovering
PooledList.
`app.h` was renamed to `app_uwp.h` to be less generic for the
include guard.
Diffstat (limited to 'platform/uwp/SCsub')
-rw-r--r-- | platform/uwp/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/SCsub b/platform/uwp/SCsub index 71c402358f..8726d32d61 100644 --- a/platform/uwp/SCsub +++ b/platform/uwp/SCsub @@ -7,7 +7,7 @@ files = [ "#platform/windows/windows_terminal_logger.cpp", "joypad_uwp.cpp", "context_egl_uwp.cpp", - "app.cpp", + "app_uwp.cpp", "os_uwp.cpp", ] |