[Rcpp-commits] r1204 - pkg/Rcpp/inst/include/Rcpp

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed May 12 10:16:51 CEST 2010


Author: romain
Date: 2010-05-12 10:16:51 +0200 (Wed, 12 May 2010)
New Revision: 1204

Modified:
   pkg/Rcpp/inst/include/Rcpp/algo.h
Log:
remove extra ; (Kurt's email)

Modified: pkg/Rcpp/inst/include/Rcpp/algo.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/algo.h	2010-05-12 08:14:17 UTC (rev 1203)
+++ pkg/Rcpp/inst/include/Rcpp/algo.h	2010-05-12 08:16:51 UTC (rev 1204)
@@ -32,7 +32,7 @@
 inline bool __any( InputIterator first, InputIterator last, const T& value, std::input_iterator_tag ){
     for ( ;first!=last; first++) if ( *first==value ) return true;
     return false;
-} ;             
+}          
 
 /* RAI case */	
 template<class RandomAccessIterator, class T>
@@ -78,7 +78,7 @@
 	}
 	
 
-} ;             
+}
 
 
 /**
@@ -144,7 +144,7 @@
 	}
 	
 
-} ;             
+}          
 
 
 /**



More information about the Rcpp-commits mailing list