1 --- include/orcus/types.hpp
2 +++ include/orcus/types.hpp
5 #ifndef INCLUDED_ORCUS_TYPES_HPP
6 #define INCLUDED_ORCUS_TYPES_HPP
9 +#pragma GCC diagnostic push
10 +#pragma GCC diagnostic ignored "-Wpragmas" // for old GCC
11 +#pragma GCC diagnostic ignored "-Wunknown-warning-option" // for Clang
12 +#pragma GCC diagnostic ignored "-Wdeprecated-copy"
13 +#pragma GCC diagnostic ignored "-Wshadow"
19 typedef ::std::vector<xml_token_attr_t> xml_attrs_t;
24 +#pragma GCC diagnostic pop
28 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */