Added pragma to disable overlong identifiers warning

This commit is contained in:
rogerl%netscape.com 2001-02-09 19:10:18 +00:00
Родитель 61612f3f44
Коммит 9c1acceef4
3 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,11 @@
* file under either the NPL or the GPL.
*/
#ifdef _WIN32
// Turn off warnings about identifiers too long in browser information
#pragma warning(disable: 4786)
#endif
#include "world.h"
#include "utilities.h"
#include "debugger.h"

Просмотреть файл

@ -31,6 +31,11 @@
* file under either the NPL or the GPL.
*/
#ifdef _WIN32
// Turn off warnings about identifiers too long in browser information
#pragma warning(disable: 4786)
#endif
#include <algorithm>
#include "jstypes.h"

Просмотреть файл

@ -31,6 +31,11 @@
* file under either the NPL or the GPL.
*/
#ifdef _WIN32
// Turn off warnings about identifiers too long in browser information
#pragma warning(disable: 4786)
#endif
#include "world.h"
namespace JavaScript