Skip to content

Commit 13bcf08

Browse files
committed
Address extra semicolon warnings
1 parent e439620 commit 13bcf08

9 files changed

+9
-9
lines changed

gframe/Base64.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace B64 {
4242
#else
4343
using basic_string_view = nonstd::basic_string_view<T>;
4444
#endif
45-
};
45+
}
4646

4747
static const char* base64_chars[2] = {
4848
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"

gframe/CGUIImageButton/CGUIImageButton.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace irr {
1818
namespace video {
1919
class IVideoDriver;
2020
class ITexture;
21-
};
21+
}
2222
namespace gui {
2323
class IGUISpriteBank;
2424

gframe/client_updater.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,6 @@ ClientUpdater::FileLock::~FileLock() {
307307
}
308308
#endif
309309

310-
};
310+
}
311311

312312
#endif //UPDATE_URL

gframe/client_updater.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ class ClientUpdater {
8787

8888
extern ClientUpdater* gClientUpdater;
8989

90-
};
90+
}
9191

9292
#endif //CLIENT_UPDATER_H

gframe/core_utils.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class QueryStream {
108108
};
109109
using OCG_Duel = void*;
110110
PacketStream ParseMessages(OCG_Duel duel);
111-
};
111+
}
112112

113113
#define HINT_SKILL 200
114114
#define HINT_SKILL_COVER 201

gframe/event_handler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1807,7 +1807,7 @@ static bool IsTrulyVisible(const irr::gui::IGUIElement* elem) {
18071807
return true;
18081808
}
18091809
return false;
1810-
};
1810+
}
18111811
bool ClientField::OnCommonEvent(const irr::SEvent& event, bool& stopPropagation) {
18121812
static irr::u32 buttonstates = 0;
18131813
static uint8_t resizestate = gGameConfig->fullscreen ? 2 : 0;

gframe/ireadfile_sqlite.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class IReadFile;
1111
extern "C" {
1212
struct sqlite3_vfs;
1313
struct sqlite3;
14-
};
14+
}
1515

1616
std::unique_ptr<sqlite3_vfs> irrsqlite_createfilesystem();
1717

gframe/repo_manager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ RepoManager::~RepoManager() {
102102

103103
size_t RepoManager::GetUpdatingReposNumber() const {
104104
return available_repos.size();
105-
};
105+
}
106106

107107
std::vector<const GitRepo*> RepoManager::GetAllRepos() const {
108108
std::vector<const GitRepo*> res;

gframe/sound_sfml.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using Status = sf::SoundSource::Status;
88

99
SoundSFMLBase::SoundSFMLBase() :
1010
music(), music_volume(0.0f), sound_volume(0.0f) {
11-
};
11+
}
1212
SoundSFMLBase::~SoundSFMLBase() = default;
1313

1414
void SoundSFMLBase::SetSoundVolume(double volume)

0 commit comments

Comments
 (0)