From 82588b0daff447f873e57442c85f2f99b7c0ae87 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Sun, 25 Dec 2011 20:12:48 +0100 Subject: [PATCH] Remove stray ';' --- simgear/sg_inlines.h | 2 +- simgear/structure/SGSmplhist.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/sg_inlines.h b/simgear/sg_inlines.h index 5d47d594..399c4bc1 100644 --- a/simgear/sg_inlines.h +++ b/simgear/sg_inlines.h @@ -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 diff --git a/simgear/structure/SGSmplhist.hxx b/simgear/structure/SGSmplhist.hxx index 67a9928c..d9198037 100644 --- a/simgear/structure/SGSmplhist.hxx +++ b/simgear/structure/SGSmplhist.hxx @@ -55,7 +55,7 @@ public: inline int SampleHistogram::buckets () { return (howManyBuckets); -}; +} inline double SampleHistogram::bucketThreshold (int i) { -- 2.39.5