OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 #endif | 55 #endif |
56 | 56 |
57 #define WTF_CHANGES 1 | 57 #define WTF_CHANGES 1 |
58 | 58 |
59 #ifdef __cplusplus | 59 #ifdef __cplusplus |
60 #undef new | 60 #undef new |
61 #undef delete | 61 #undef delete |
62 #include <wtf/FastMalloc.h> | 62 #include <wtf/FastMalloc.h> |
63 #endif | 63 #endif |
64 | 64 |
65 #include <wtf/DisallowCType.h> | |
66 | |
67 #if COMPILER(MSVC) | 65 #if COMPILER(MSVC) |
68 #define SKIP_STATIC_CONSTRUCTORS_ON_MSVC 1 | 66 #define SKIP_STATIC_CONSTRUCTORS_ON_MSVC 1 |
69 #else | 67 #else |
70 #define SKIP_STATIC_CONSTRUCTORS_ON_GCC 1 | 68 #define SKIP_STATIC_CONSTRUCTORS_ON_GCC 1 |
71 #endif | 69 #endif |
OLD | NEW |