Skip to content

Commit

Permalink
Refs #4204. Fix for RHEL5 build and kill some warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Nov 28, 2011
1 parent be5e887 commit 946b49a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions Code/Mantid/Framework/PythonAPI/src/boostpython.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Wtype-limits"
#pragma GCC diagnostic ignored "-Wunused-value"
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif

#include "boostpython/converter/arg_to_python_base.cpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
#endif
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/reverse_graph.hpp>
#include <boost/property_map/property_map.hpp>
#if BOOST_VERSION >=103800
#include <boost/property_map/property_map.hpp>
#else
#include <boost/property_map.hpp>
#endif
#include <boost/bind.hpp>
#include <boost/integer_traits.hpp>
#include <boost/tuple/tuple.hpp>
Expand Down

0 comments on commit 946b49a

Please sign in to comment.