Skip to content
Snippets Groups Projects
Commit cb387d7a authored by Hahn, Steven's avatar Hahn, Steven
Browse files

Fix GCC pedantic warnings.

parent 437428a1
No related merge requests found
...@@ -44,7 +44,6 @@ class MANTID_API_DLL HistoryItem { ...@@ -44,7 +44,6 @@ class MANTID_API_DLL HistoryItem {
public: public:
HistoryItem(AlgorithmHistory_const_sptr algHist); HistoryItem(AlgorithmHistory_const_sptr algHist);
virtual ~HistoryItem() = default; virtual ~HistoryItem() = default;
;
bool isUnrolled() const { return m_unrolled; } bool isUnrolled() const { return m_unrolled; }
void unrolled(bool unrolled) { m_unrolled = unrolled; } void unrolled(bool unrolled) { m_unrolled = unrolled; }
AlgorithmHistory_const_sptr getAlgorithmHistory() const { AlgorithmHistory_const_sptr getAlgorithmHistory() const {
......
...@@ -142,7 +142,6 @@ private: ...@@ -142,7 +142,6 @@ private:
/// this class can't be constructed it is just a holder for some static /// this class can't be constructed it is just a holder for some static
/// things /// things
RangeHelper() = default; RangeHelper() = default;
;
/// give an enum from poco a better name here /// give an enum from poco a better name here
enum { enum {
IGNORE_SPACES = IGNORE_SPACES =
......
...@@ -114,7 +114,6 @@ public: ...@@ -114,7 +114,6 @@ public:
NXObject(const NXhandle fileID, const NXClass *parent, NXObject(const NXhandle fileID, const NXClass *parent,
const std::string &name); const std::string &name);
virtual ~NXObject() = default; virtual ~NXObject() = default;
;
/// Return the NX class name for a class (HDF group) or "SDS" for a data set; /// Return the NX class name for a class (HDF group) or "SDS" for a data set;
virtual std::string NX_class() const = 0; virtual std::string NX_class() const = 0;
// True if complies with our understanding of the www.nexusformat.org // True if complies with our understanding of the www.nexusformat.org
......
...@@ -52,7 +52,6 @@ class MockAlgorithm : public Mantid::API::Algorithm { ...@@ -52,7 +52,6 @@ class MockAlgorithm : public Mantid::API::Algorithm {
public: public:
MockAlgorithm(size_t nSteps = 100); MockAlgorithm(size_t nSteps = 100);
~MockAlgorithm() override = default; ~MockAlgorithm() override = default;
;
/// Algorithm's name for identification /// Algorithm's name for identification
const std::string name() const override { return "MockAlgorithm"; }; const std::string name() const override { return "MockAlgorithm"; };
......
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