Merge pull request #11933 from AaronVanGeffen/unused-vars

Patch unused variables
This commit is contained in:
Tulio Leao 2020-06-11 12:12:06 -03:00 committed by GitHub
commit 03ba7e5301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 4 deletions

View File

@ -2981,8 +2981,6 @@
F76C840C1EC4E7CC00FA49E2 /* ServerList.h */,
F76C840D1EC4E7CC00FA49E2 /* Socket.cpp */,
F76C840E1EC4E7CC00FA49E2 /* Socket.h */,
F76C840F1EC4E7CC00FA49E2 /* Twitch.cpp */,
F76C84101EC4E7CC00FA49E2 /* Twitch.h */,
);
path = network;
sourceTree = "<group>";
@ -4278,7 +4276,6 @@
F76C865C1EC4E88300FA49E2 /* Socket.cpp in Sources */,
C688784B202899B90084B384 /* Intro.cpp in Sources */,
C68878FD20289B9B0084B384 /* MiniRollerCoaster.cpp in Sources */,
2A1F4FE0221FF4B0003CA045 /* Twitch.cpp in Sources */,
93F76EF520BFF76E00D4512C /* Paint.Peep.cpp in Sources */,
C6887857202899FD0084B384 /* Park.cpp in Sources */,
F76C86601EC4E88300FA49E2 /* BannerObject.cpp in Sources */,

View File

@ -33,7 +33,6 @@
static constexpr const rct_string_id WINDOW_TITLE = STR_STRINGID;
static constexpr const int32_t WH = 224;
static constexpr const int32_t WW = 230;
// clang-format off
enum WINDOW_PARK_PAGE {

View File

@ -59,7 +59,9 @@ public:
~FileWatcher();
private:
#if defined(_WIN32) || defined(__linux__)
bool _finished{};
#endif
void WatchDirectory();
};