[Rcpp-commits] r4113 - in pkg/Rcpp/inst/include/Rcpp: api/meat vector

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Dec 7 19:43:29 CET 2012


Author: dmbates
Date: 2012-12-07 19:43:28 +0100 (Fri, 07 Dec 2012)
New Revision: 4113

Modified:
   pkg/Rcpp/inst/include/Rcpp/api/meat/Vector.h
   pkg/Rcpp/inst/include/Rcpp/vector/Vector.h
Log:
Remove extra ';' characters to keep -pedantic quiet.


Modified: pkg/Rcpp/inst/include/Rcpp/api/meat/Vector.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/api/meat/Vector.h	2012-12-07 16:05:45 UTC (rev 4112)
+++ pkg/Rcpp/inst/include/Rcpp/api/meat/Vector.h	2012-12-07 18:43:28 UTC (rev 4113)
@@ -29,7 +29,7 @@
         RCPP_DEBUG( "Vector()" ) ;
         RObject::setSEXP( Rf_allocVector( RTYPE, 0 ) ) ;
         init() ;
-    } ;
+    }
     
     template <int RTYPE>
     Vector<RTYPE>::~Vector(){

Modified: pkg/Rcpp/inst/include/Rcpp/vector/Vector.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/vector/Vector.h	2012-12-07 16:05:45 UTC (rev 4112)
+++ pkg/Rcpp/inst/include/Rcpp/vector/Vector.h	2012-12-07 18:43:28 UTC (rev 4113)
@@ -92,7 +92,7 @@
     template <typename U> Vector( const Dimension& dims, const U& u) ;
     template <bool NA, typename VEC> Vector( const VectorBase<RTYPE,NA,VEC>& other )  ;
     template <typename U> Vector( const int& size, const U& u) ;
-    template <bool NA, typename T> Vector( const sugar::SingleLogicalResult<NA,T>& obj ) ;  ;
+    template <bool NA, typename T> Vector( const sugar::SingleLogicalResult<NA,T>& obj ) ;
     
     template <typename U1>
     Vector( const int& siz, stored_type (*gen)(U1), const U1& u1) ;



More information about the Rcpp-commits mailing list