56 lines
2.6 KiB
C++
56 lines
2.6 KiB
C++
/*****************************************************************************
|
|
*
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
*
|
|
* Copyright (C) 2016 Artem Pavlenko
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*****************************************************************************/
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wunknown-pragmas" // clang+gcc
|
|
#pragma GCC diagnostic ignored "-Wpragmas" // gcc
|
|
#pragma GCC diagnostic ignored "-W#pragma-messages"
|
|
#pragma GCC diagnostic ignored "-Wunsequenced"
|
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
#pragma GCC diagnostic ignored "-Wredeclared-class-member"
|
|
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
|
|
#pragma GCC diagnostic ignored "-Wunused-local-typedefs" // gcc5
|
|
#pragma GCC diagnostic ignored "-Wshadow"
|
|
#pragma GCC diagnostic ignored "-Wc++11-narrowing"
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
|
#pragma GCC diagnostic ignored "-Wconversion"
|
|
#pragma GCC diagnostic ignored "-Wc++98-compat-pedantic"
|
|
#pragma GCC diagnostic ignored "-Wdisabled-macro-expansion"
|
|
#pragma GCC diagnostic ignored "-Wold-style-cast"
|
|
#pragma GCC diagnostic ignored "-Wdocumentation"
|
|
#pragma GCC diagnostic ignored "-Wdocumentation-unknown-command"
|
|
#pragma GCC diagnostic ignored "-Wundef"
|
|
#pragma GCC diagnostic ignored "-Wdeprecated"
|
|
#pragma GCC diagnostic ignored "-Wpadded"
|
|
#pragma GCC diagnostic ignored "-Wc++98-compat"
|
|
#pragma GCC diagnostic ignored "-Wreserved-id-macro"
|
|
#pragma GCC diagnostic ignored "-Wweak-vtables"
|
|
#pragma GCC diagnostic ignored "-Wextra-semi"
|
|
#pragma GCC diagnostic ignored "-Wglobal-constructors"
|
|
#pragma GCC diagnostic ignored "-Wheader-hygiene"
|
|
#pragma GCC diagnostic ignored "-Wexit-time-destructors"
|
|
#pragma GCC diagnostic ignored "-Wswitch-enum"
|
|
#pragma GCC diagnostic ignored "-Wmissing-noreturn"
|
|
#pragma GCC diagnostic ignored "-Wcovered-switch-default"
|
|
#pragma GCC diagnostic ignored "-Wfloat-equal"
|