source: webkit/trunk/Source/JavaScriptCore/config.h@ 295779

Last change on this file since 295779 was 278711, checked in by [email protected], 4 years ago

Another speculative build fix for Win32.
https://bugs.webkit.org/show_bug.cgi?id=226880
rdar://79124858

Reviewed by Keith Miller.

We're getting reports of "warning C4206: nonstandard extension used: translation
unit is empty" turning into a build error on Win32 ports. By design, we rely on
#define flags to make some translation units empty. Hence, we don't want this
warning to turn into an error.

  • config.h:
  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1/*
2 * Copyright (C) 2006-2021 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <[email protected]>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 *
20 */
21
22#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H && defined(BUILDING_WITH_CMAKE)
23#include "cmakeconfig.h"
24#endif
25
26#define JSC_API_AVAILABLE(...)
27#define JSC_CLASS_AVAILABLE(...) JS_EXPORT
28#define JSC_API_DEPRECATED(...)
29// Use zero since it will be less than any possible version number.
30#define JSC_MAC_VERSION_TBA 0
31#define JSC_IOS_VERSION_TBA 0
32
33#include "JSExportMacros.h"
34
35#ifdef __cplusplus
36#undef new
37#undef delete
38#include <wtf/FastMalloc.h>
39#endif
40
41#include <wtf/DisallowCType.h>
42
43/* Disabling warning C4206: nonstandard extension used: translation unit is empty.
44 By design, we rely on #define flags to make some translation units empty.
45 Make sure this warning does not turn into an error.
46*/
47#if COMPILER(MSVC)
48#pragma warning(disable:4206)
49#endif
Note: See TracBrowser for help on using the repository browser.