1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix all warnings reported by clang

This commit is contained in:
Sfan5 2014-04-15 19:49:32 +02:00
parent d436502fa4
commit 118e2ae865
27 changed files with 49 additions and 63 deletions

View file

@ -141,6 +141,8 @@ namespace con {
class Connection;
}
#define ARRAYSIZE(a) (sizeof(a) / sizeof((a)[0]))
enum ClientState
{
Invalid,
@ -219,7 +221,6 @@ public:
m_nearest_unsent_d(0),
m_nearest_unsent_reset_timer(0.0),
m_excess_gotblocks(0),
m_nothing_to_send_counter(0),
m_nothing_to_send_pause_timer(0.0),
m_name(""),
m_version_major(0),
@ -355,7 +356,6 @@ private:
u32 m_excess_gotblocks;
// CPU usage optimization
u32 m_nothing_to_send_counter;
float m_nothing_to_send_pause_timer;
/*
@ -433,7 +433,7 @@ public:
{ assert(m_env == 0); m_env = env; }
static std::string state2Name(ClientState state) {
assert(state < sizeof(statenames));
assert((int) state < ARRAYSIZE(statenames));
return statenames[state];
}