]> git.mxchange.org Git - simgear.git/commitdiff
Remove stray ';'
authorTorsten Dreyer <Torsten@t3r.de>
Sun, 25 Dec 2011 19:12:48 +0000 (20:12 +0100)
committerTorsten Dreyer <Torsten@t3r.de>
Sun, 25 Dec 2011 19:12:48 +0000 (20:12 +0100)
simgear/sg_inlines.h
simgear/structure/SGSmplhist.hxx

index 5d47d594c8994ae629213d39822b7fddd58f6115..399c4bc1ebd86d17a8172f183db639782f19af79 100644 (file)
@@ -98,6 +98,6 @@ inline void SG_NORMALIZE_RANGE( T &val, const T min, const T max ) {
     T step = max - min;
     while( val >= max )  val -= step;
     while( val < min ) val += step;
-};
+}
 
 #endif // _SG_INLINES_H
index 67a9928c4102fe7a82e332a290963c3695a86929..d919803748b666f4e5ef915bfbf5cf5fecc8e381 100644 (file)
@@ -55,7 +55,7 @@ public:
 inline int SampleHistogram::buckets ()
 {
   return (howManyBuckets);
-};
+}
 
 inline double SampleHistogram::bucketThreshold (int i)
 {