зеркало из https://github.com/mozilla/gecko-dev.git
Added pragma to disable overlong identifiers warning
This commit is contained in:
Родитель
61612f3f44
Коммит
9c1acceef4
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче