X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fsg_inlines.h;h=399c4bc1ebd86d17a8172f183db639782f19af79;hb=ae0b8eb3b3943690d0788dde316b1c152390f1fd;hp=5d47d594c8994ae629213d39822b7fddd58f6115;hpb=dcb95d131bc6aef1abe25d1f415e309f06e52436;p=simgear.git 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