Remove stray ';'

This commit is contained in:
Torsten Dreyer 2011-12-25 20:12:48 +01:00
parent aef8f13290
commit 82588b0daf
2 changed files with 2 additions and 2 deletions

View 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

View File

@ -55,7 +55,7 @@ public:
inline int SampleHistogram::buckets ()
{
return (howManyBuckets);
};
}
inline double SampleHistogram::bucketThreshold (int i)
{