[Rcpp-commits] r464 - in pkg/src: . Rcpp

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Jan 26 12:22:26 CET 2010


Author: romain
Date: 2010-01-26 12:22:26 +0100 (Tue, 26 Jan 2010)
New Revision: 464

Modified:
   pkg/src/Rcpp/as.h
   pkg/src/clone.cpp
Log:
correct include

Modified: pkg/src/Rcpp/as.h
===================================================================
--- pkg/src/Rcpp/as.h	2010-01-26 10:46:31 UTC (rev 463)
+++ pkg/src/Rcpp/as.h	2010-01-26 11:22:26 UTC (rev 464)
@@ -61,8 +61,6 @@
 
 /* FIXME: turn the functions below into a template */
 
-
-
 /* these do not take care of coercion*/
 inline bool Rboolean_to_bool( int x){ return x == TRUE ; }
 inline bool int_to_bool(int x){ return x != 0 ; }
@@ -104,8 +102,6 @@
 
 inline int int_to_RBoolean(int x){ return ( x == NA_INTEGER ) ? NA_LOGICAL : (x!=0); }
 
-
-
 } // namespace Rcpp      
 
 #endif

Modified: pkg/src/clone.cpp
===================================================================
--- pkg/src/clone.cpp	2010-01-26 10:46:31 UTC (rev 463)
+++ pkg/src/clone.cpp	2010-01-26 11:22:26 UTC (rev 464)
@@ -19,7 +19,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <clone.h>
+#include <Rcpp/clone.h>
 
 namespace Rcpp{
 



More information about the Rcpp-commits mailing list