From 597b93798a804cde1783d6d2ab53b348d57c44cd Mon Sep 17 00:00:00 2001
From: Tom Rondeau <tom@trondeau.com>
Date: Mon, 7 Jul 2014 12:18:00 -0400
Subject: Removing trailing/extra whitespaces before release.

We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
---
 gr-analog/lib/squelch_base_ff_impl.cc | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

(limited to 'gr-analog/lib/squelch_base_ff_impl.cc')

diff --git a/gr-analog/lib/squelch_base_ff_impl.cc b/gr-analog/lib/squelch_base_ff_impl.cc
index 2fb0e64301..a729fedb24 100644
--- a/gr-analog/lib/squelch_base_ff_impl.cc
+++ b/gr-analog/lib/squelch_base_ff_impl.cc
@@ -51,26 +51,26 @@ namespace gr {
     {
       return d_ramp;
     }
-    
-    void 
+
+    void
     squelch_base_ff_impl::set_ramp(int ramp)
     {
       d_ramp = ramp;
     }
-    
-    bool 
+
+    bool
     squelch_base_ff_impl::gate() const
     {
       return d_gate;
     }
 
-    void 
+    void
     squelch_base_ff_impl::set_gate(bool gate)
     {
       d_gate = gate;
     }
-    
-    bool 
+
+    bool
     squelch_base_ff_impl::unmuted() const
     {
       return (d_state == ST_UNMUTED || d_state == ST_ATTACK);
@@ -109,7 +109,7 @@ namespace gr {
 	  d_envelope = 0.5-std::cos(M_PI*(++d_ramped)/d_ramp)/2.0;
 
 	  // use >= in case d_ramp is set to lower value elsewhere
-	  if(d_ramped >= d_ramp) { 
+	  if(d_ramped >= d_ramp) {
 	    d_state = ST_UNMUTED;
 	    d_envelope = 1.0;
 	  }
-- 
cgit v1.2.3