mirror of
https://github.com/mangosfour/server.git
synced 2025-12-23 07:37:01 +00:00
[7114] Code cleanups.
Remove redundant `inline` for in-class function definitions. Fixed float -> int implicit casts.
This commit is contained in:
parent
9fba64aeae
commit
9e590f7ceb
22 changed files with 82 additions and 83 deletions
|
|
@ -40,7 +40,7 @@ class SqlDelayThread : public ZThread::Runnable
|
|||
SqlDelayThread(Database* db);
|
||||
|
||||
///< Put sql statement to delay queue
|
||||
inline bool Delay(SqlOperation* sql) { m_sqlQueue.add(sql); return true; }
|
||||
bool Delay(SqlOperation* sql) { m_sqlQueue.add(sql); return true; }
|
||||
|
||||
virtual void Stop(); ///< Stop event
|
||||
virtual void run(); ///< Main Thread loop
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue