remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / plugins / freeverb / Components / denormals.h
index a6d599a665c0e3bc8dd665322144e389dd2f9973..78285c46aa36f9929d70e3c4f49beae5060c5a2e 100644 (file)
@@ -17,7 +17,7 @@ static inline void undenormalise(float &sample) {
   union { float f; unsigned int u; } v;  v.f = sample;
   if( !(v.u & 0x7f800000) ) sample=0.f;
 }
+
 #endif//_denormals_
 
 //ends