From: Maxim Mamontov <faust.madf@gmail.com>
Date: Sun, 13 Nov 2011 20:41:36 +0000 (+0200)
Subject: Redundant semicolon removed
X-Git-Tag: 2.408~52
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/798b4c9ddc6425be51b1a70231f20d32254cede1?ds=sidebyside;hp=--cc

Redundant semicolon removed
---

798b4c9ddc6425be51b1a70231f20d32254cede1
diff --git a/include/stg/user_traff.h b/include/stg/user_traff.h
index fa4cc7fd..7ed16361 100644
--- a/include/stg/user_traff.h
+++ b/include/stg/user_traff.h
@@ -73,17 +73,17 @@ inline DIR_TRAFF & DIR_TRAFF::operator=(const DIR_TRAFF & ts)
 {
 traff = ts.traff;
 return *this;
-};
+}
 //-----------------------------------------------------------------------------
 inline uint64_t & DIR_TRAFF::operator[](int idx)
 {
 return traff[idx];
-};
+}
 //-----------------------------------------------------------------------------
 inline uint64_t DIR_TRAFF::operator[](int idx) const
 {
 return traff[idx];
-};
+}
 //-----------------------------------------------------------------------------
 inline DIR_TRAFF DIR_TRAFF::operator+(const DIR_TRAFF & ts)
 {
@@ -92,7 +92,7 @@ for (int i = 0; i < DIR_NUM; i++)
     traff[i] = traff[i] + ts.traff[i];
     }
 return *this;
-};
+}
 //-----------------------------------------------------------------------------
 inline std::ostream & operator<<(std::ostream & o, const DIR_TRAFF & traff)
 {