Added the #pragma directive for MSVC++ in all .cpp
This commit is contained in:
parent
62686ac406
commit
a5e3abd9f6
30 changed files with 150 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
#ifdef _MSC_VER
|
||||
// to avoid long name warnings
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <eoPersistent.h>
|
||||
|
||||
//Implementation of these objects
|
||||
|
|
|
|||
Reference in a new issue