Remove stray ';'
This commit is contained in:
parent
aef8f13290
commit
82588b0daf
@ -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
|
||||
|
@ -55,7 +55,7 @@ public:
|
||||
inline int SampleHistogram::buckets ()
|
||||
{
|
||||
return (howManyBuckets);
|
||||
};
|
||||
}
|
||||
|
||||
inline double SampleHistogram::bucketThreshold (int i)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user