Skip to content

Commit

Permalink
try to silence some more warnings in prep for 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Nov 18, 2013
1 parent daa3cdc commit 217105e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions boost/boost/property_tree/detail/json_parser_write.hpp
Expand Up @@ -11,7 +11,11 @@
#define BOOST_PROPERTY_TREE_DETAIL_JSON_PARSER_WRITE_HPP_INCLUDED

#pragma GCC diagnostic ignored "-Wfloat-equal"
#pragma GCC diagnostic ignored "-Wtype-limits"

#ifdef __clang__
#pragma GCC diagnostic ignored "-Wtautological-constant-out-of-range-compare"
#endif

#include <boost/property_tree/ptree.hpp>
#include <boost/next_prior.hpp>
Expand Down
2 changes: 2 additions & 0 deletions boost/boost/test/unit_test.hpp
Expand Up @@ -17,7 +17,9 @@

// Boost.Test
#pragma GCC diagnostic ignored "-Wfloat-equal"
#ifdef __clang__
#pragma GCC diagnostic ignored "-Wunneeded-internal-declaration"
#endif
#pragma GCC diagnostic ignored "-Wsign-compare"

#include <boost/test/test_tools.hpp>
Expand Down
2 changes: 2 additions & 0 deletions src/drivers/las/GeotiffSupport.hpp
Expand Up @@ -40,6 +40,8 @@
// See http://lists.osgeo.org/pipermail/gdal-dev/2013-November/037429.html
#define CPL_SERV_H_INCLUDED

#pragma GCC diagnostic ignored "-Wfloat-equal"

#ifdef PDAL_HAVE_LIBGEOTIFF
#include <geo_simpletags.h>
#include <cpl_conv.h>
Expand Down

0 comments on commit 217105e

Please sign in to comment.