[Scipy-svn] r4698 - branches/refactor_fft/scipy/fftpack/backends/common

scipy-svn at scipy.org scipy-svn at scipy.org
Mon Sep 8 02:54:40 EDT 2008


Author: cdavid
Date: 2008-09-08 01:54:35 -0500 (Mon, 08 Sep 2008)
New Revision: 4698

Modified:
   branches/refactor_fft/scipy/fftpack/backends/common/cycliccache.h
Log:
Fix trailing spaces.

Modified: branches/refactor_fft/scipy/fftpack/backends/common/cycliccache.h
===================================================================
--- branches/refactor_fft/scipy/fftpack/backends/common/cycliccache.h	2008-09-08 05:01:53 UTC (rev 4697)
+++ branches/refactor_fft/scipy/fftpack/backends/common/cycliccache.h	2008-09-08 06:54:35 UTC (rev 4698)
@@ -20,7 +20,6 @@
 
 	public:
 		int m_n;
-		
 };
 
 template <class T>
@@ -30,8 +29,8 @@
 		Cache(const T& id) : m_id(id) {};
 		virtual ~Cache() {};
 
-		virtual bool operator==(const Cache& other) const 
-		{ 
+		virtual bool operator==(const Cache& other) const
+		{
 			return other.m_id == m_id;
 		};
 
@@ -54,7 +53,7 @@
 		virtual ~CacheManager()
 		{
 			int i;
-	
+
 			for (i = 0; i < m_curn; ++i) {
 				delete m_cache[i];
 			}
@@ -89,7 +88,7 @@
 		};
 
 	private:
-		U** m_cache;		
+		U** m_cache;
 		int m_n;
 		int m_curn;
 		int m_last;




More information about the Scipy-svn mailing list