ignore_warnings.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 // Note: no include guards! We want to be able to #include this
20 // header multiple times.
21 
22 #include "libmesh/libmesh_config.h"
23 
24 // TODO: icpc options
25 #ifdef __clang__
26 #pragma clang diagnostic push
27 #pragma clang diagnostic ignored "-Wunused-parameter"
28 #pragma clang diagnostic ignored "-Wextra-semi"
29 #pragma clang diagnostic ignored "-Wvariadic-macros"
30 #pragma clang diagnostic ignored "-Wc++11-extensions"
31 #pragma clang diagnostic ignored "-Wnested-anon-types"
32 #pragma clang diagnostic ignored "-Wsign-compare"
33 #pragma clang diagnostic ignored "-Wunused-private-field"
34 #pragma clang diagnostic ignored "-Wextra"
35 #pragma clang diagnostic ignored "-Wredundant-decls"
36 #pragma clang diagnostic ignored "-Wcast-qual"
37 #pragma clang diagnostic ignored "-Wswitch-default"
38 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
39 #pragma clang diagnostic ignored "-Woverloaded-virtual"
40 // This isn't supported in 3.4.2 at least
41 #if (__clang_major__ > 3)
42 #pragma clang diagnostic ignored "-Wmacro-redefined"
43 #endif
44 #if (__clang_major__ > 3) || (__clang_major__ == 3 && __clang_minor__ > 5)
45 // This was introduced in 3.6
46 #pragma clang diagnostic ignored "-Winconsistent-missing-override"
47 #endif // clang > 3.5
48 #endif
49 
50 #if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(__clang__)
51 // GCC > 4.5 supports diagnostic pragmas with push/pop
52 #if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ > 5)
53 #pragma GCC diagnostic push
54 // These two don't work?
55 #pragma GCC diagnostic ignored "-Wpedantic"
56 #pragma GCC diagnostic ignored "-Wdeprecated"
57 // But this is helpful with some MPI stacks
58 #pragma GCC diagnostic ignored "-Wunused-parameter"
59 // And these are for cppunit
60 #pragma GCC diagnostic ignored "-Woverloaded-virtual"
61 #pragma GCC diagnostic ignored "-Wundef"
62 // And these are for Trilinos
63 #pragma GCC diagnostic ignored "-Wextra"
64 #pragma GCC diagnostic ignored "-Wshadow"
65 // And these are for PETSc
66 #pragma GCC diagnostic ignored "-Wredundant-decls"
67 #pragma GCC diagnostic ignored "-Wcast-qual"
68 #pragma GCC diagnostic ignored "-Wswitch-default"
69 // And this for Eigen
70 #pragma GCC diagnostic ignored "-Wconversion"
71 // And this for VTK
72 #pragma GCC diagnostic ignored "-Wlogical-op"
73 // Ignore warnings from code that uses deprecated members of std, like std::auto_ptr.
74 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
75 #if (__GNUC__ > 5)
76 // Ignore this for VTK
77 #pragma GCC diagnostic ignored "-Wfloat-conversion"
78 // Ignore warnings from code that does "if (foo) bar();"
79 #pragma GCC diagnostic ignored "-Wmisleading-indentation"
80 // Ignore warnings from bad placement new use
81 #pragma GCC diagnostic ignored "-Wplacement-new"
82 #if (__GNUC__ > 6)
83 #pragma GCC diagnostic ignored "-Wint-in-bool-context"
84 #pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
85 #endif // GCC > 6
86 #endif // GCC > 5
87 #endif // GCC > 4.5
88 #endif // __GNUC__ && !__INTEL_COMPILER