Skip to content
Snippets Groups Projects
Unverified Commit e67ca7bf authored by Pete Peterson's avatar Pete Peterson Committed by GitHub
Browse files

Merge pull request #22346 from martyngigg/warnings-gcc73

Fix warnings generated by gcc 7.3
parents 27fc4225 51f6b97c
No related branches found
No related tags found
No related merge requests found
......@@ -3,10 +3,10 @@
#include <tuple>
#include "MantidKernel/IndexSet.h"
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/MatrixWorkspace_fwd.h"
#include "MantidAlgorithms/DllConfig.h"
#include "MantidKernel/IndexSet.h"
namespace Mantid {
......@@ -56,13 +56,13 @@ private:
*
* Used for generating a sequence 0,1,2,.... for extracting arguments from
* tuple. */
template <int...> struct seq {};
template <std::size_t...> struct seq {};
// Doxygen does not like recursive types.
template <int N, int... S>
template <std::size_t N, std::size_t... S>
struct gens /** @cond */
: gens<N - 1, N - 1, S...> /** @endcond */ {/** @cond */
};
template <int... S> struct gens<0, S...> {/** @endcond */
template <std::size_t... S> struct gens<0, S...> {/** @endcond */
using type = seq<S...>;
};
......@@ -78,7 +78,7 @@ private:
template <typename Tp> struct contains<Tp> : std::false_type {};
/// Internal implementation of for_each().
template <class... Flags, class WS, class T, int... S, class OP>
template <class... Flags, class WS, class T, std::size_t... S, class OP>
void for_each(WS &workspace, T getters, seq<S...>, const OP &operation) {
// If we get the flag Indices::FromProperty we use a potential user-defined
// range property, otherwise default to the full range of all histograms.
......
#include "MantidPythonInterface/kernel/GetPointer.h"
#include "MantidAPI/CompositeFunction.h"
#include "MantidKernel/WarningSuppressions.h"
#include "MantidPythonInterface/kernel/GetPointer.h"
#include <boost/python/class.hpp>
#include <boost/python/overloads.hpp>
#include <boost/python/register_ptr_to_python.hpp>
......@@ -23,8 +24,10 @@ using setParameterType2 = void (CompositeFunction::*)(const std::string &,
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wunused-local-typedef"
#endif
GCC_DIAG_OFF(conversion)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(setParameterType2_Overloads,
setParameter, 2, 3)
GCC_DIAG_ON(conversion)
#ifdef __clang__
#pragma clang diagnostic pop
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment