TSAGE: Fix warning when compiling in release mode
This commit is contained in:
parent
c02420df43
commit
aaf2c0e6eb
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ template<typename T>
|
||||||
class SynchronizedList : public Common::List<T> {
|
class SynchronizedList : public Common::List<T> {
|
||||||
public:
|
public:
|
||||||
void synchronize(Serializer &s) {
|
void synchronize(Serializer &s) {
|
||||||
int entryCount;
|
int entryCount = 0;
|
||||||
|
|
||||||
if (s.isLoading()) {
|
if (s.isLoading()) {
|
||||||
this->clear();
|
this->clear();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue