From cb387d7a36ee05e8d2907e254829a33b68bcbcd9 Mon Sep 17 00:00:00 2001
From: Steven Hahn <hahnse@ornl.gov>
Date: Tue, 7 Jun 2016 14:04:50 -0400
Subject: [PATCH] Fix GCC pedantic warnings.

---
 Framework/API/inc/MantidAPI/HistoryItem.h                        | 1 -
 Framework/DataHandling/inc/MantidDataHandling/GroupDetectors2.h  | 1 -
 Framework/Nexus/inc/MantidNexus/NexusClasses.h                   | 1 -
 .../TestHelpers/inc/MantidTestHelpers/WorkspaceCreationHelper.h  | 1 -
 4 files changed, 4 deletions(-)

diff --git a/Framework/API/inc/MantidAPI/HistoryItem.h b/Framework/API/inc/MantidAPI/HistoryItem.h
index 0baa6a0e25a..2ff07e0eee0 100644
--- a/Framework/API/inc/MantidAPI/HistoryItem.h
+++ b/Framework/API/inc/MantidAPI/HistoryItem.h
@@ -44,7 +44,6 @@ class MANTID_API_DLL HistoryItem {
 public:
   HistoryItem(AlgorithmHistory_const_sptr algHist);
   virtual ~HistoryItem() = default;
-  ;
   bool isUnrolled() const { return m_unrolled; }
   void unrolled(bool unrolled) { m_unrolled = unrolled; }
   AlgorithmHistory_const_sptr getAlgorithmHistory() const {
diff --git a/Framework/DataHandling/inc/MantidDataHandling/GroupDetectors2.h b/Framework/DataHandling/inc/MantidDataHandling/GroupDetectors2.h
index 5aeb9c61b33..9c71bfb983f 100644
--- a/Framework/DataHandling/inc/MantidDataHandling/GroupDetectors2.h
+++ b/Framework/DataHandling/inc/MantidDataHandling/GroupDetectors2.h
@@ -142,7 +142,6 @@ private:
     /// this class can't be constructed it is just a holder for some static
     /// things
     RangeHelper() = default;
-    ;
     /// give an enum from poco a better name here
     enum {
       IGNORE_SPACES =
diff --git a/Framework/Nexus/inc/MantidNexus/NexusClasses.h b/Framework/Nexus/inc/MantidNexus/NexusClasses.h
index 6a503e6ad98..8780735a172 100644
--- a/Framework/Nexus/inc/MantidNexus/NexusClasses.h
+++ b/Framework/Nexus/inc/MantidNexus/NexusClasses.h
@@ -114,7 +114,6 @@ public:
   NXObject(const NXhandle fileID, const NXClass *parent,
            const std::string &name);
   virtual ~NXObject() = default;
-  ;
   /// Return the NX class name for a class (HDF group) or "SDS" for a data set;
   virtual std::string NX_class() const = 0;
   // True if complies with our understanding of the www.nexusformat.org
diff --git a/Framework/TestHelpers/inc/MantidTestHelpers/WorkspaceCreationHelper.h b/Framework/TestHelpers/inc/MantidTestHelpers/WorkspaceCreationHelper.h
index aff39f74c69..a25a187dd46 100644
--- a/Framework/TestHelpers/inc/MantidTestHelpers/WorkspaceCreationHelper.h
+++ b/Framework/TestHelpers/inc/MantidTestHelpers/WorkspaceCreationHelper.h
@@ -52,7 +52,6 @@ class MockAlgorithm : public Mantid::API::Algorithm {
 public:
   MockAlgorithm(size_t nSteps = 100);
   ~MockAlgorithm() override = default;
-  ;
 
   /// Algorithm's name for identification
   const std::string name() const override { return "MockAlgorithm"; };
-- 
GitLab