Bump for 3.6-28
[LibreOffice.git] / connectivity / source / drivers / mozab / post_include_mozilla.h
blob37fbc9a278b4d936b1f79367c1e1deb57784c3d8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #if defined __GNUC__ && ((__GNUC__ == 4 && __GNUC_MINOR__ >= 6) || __GNUC__ > 4)
30 #pragma GCC diagnostic pop
31 #elif defined __SUNPRO_CC
32 #pragma enable_warn
33 #elif defined _MSC_VER
34 #pragma warning(pop)
35 #endif
37 #ifdef MOZ_BOOL
38 # undef BOOL
39 # undef Bool
40 #endif
42 #ifdef DEBUG_WAS_DEFINED
43 #define DEBUG DEBUG_WAS_DEFINED
44 #endif
46 #ifdef _DEBUG_WAS_DEFINED
47 #define _DEBUG _DEBUG_WAS_DEFINED
48 #endif
50 #ifndef _CONNECTIVITY_MOZILLA_REINTERPRET_CAST_MINGW_ONLY_
51 #define _CONNECTIVITY_MOZILLA_REINTERPRET_CAST_MINGW_ONLY_
53 #ifdef __cplusplus
54 #ifdef __MINGW32__
55 template<class T1, class T2> T1 inline reinterpret_cast_mingw_only(T2 p) { return reinterpret_cast<T1>(p); }
56 #else
57 template<class T1, class T2> T1 inline reinterpret_cast_mingw_only(T2 p) { return p; }
58 #endif
59 #endif
61 #endif
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */