Fixed some VS2008 warnings

This commit is contained in:
firewave 2010-04-13 11:31:27 +02:00
parent ba864724cc
commit 8966888a92
3 changed files with 9 additions and 0 deletions

View File

@ -174,6 +174,8 @@ public:
} }
private: private:
TokenStrEquals& operator=(const TokenStrEquals&); // disallow assignments
const std::string value; const std::string value;
}; };

View File

@ -140,6 +140,9 @@ private:
/** @brief next Var item */ /** @brief next Var item */
Var *next; Var *next;
private:
Var& operator=(const Var&); // disallow assignments
}; };
/** /**

View File

@ -18,6 +18,10 @@
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef _MSC_VER
#pragma warning(disable: 4503)
#endif
#include "tokenize.h" #include "tokenize.h"
#include "token.h" #include "token.h"
#include "filelister.h" #include "filelister.h"