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

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue May 4 01:01:51 CEST 2010


Author: edd
Date: 2010-05-04 01:01:50 +0200 (Tue, 04 May 2010)
New Revision: 1149

Modified:
   pkg/Rcpp/inst/include/Rcpp/exceptions.h
Log:
repair minor damage from revision 1146


Modified: pkg/Rcpp/inst/include/Rcpp/exceptions.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/exceptions.h	2010-05-03 22:30:00 UTC (rev 1148)
+++ pkg/Rcpp/inst/include/Rcpp/exceptions.h	2010-05-03 23:01:50 UTC (rev 1149)
@@ -62,14 +62,14 @@
 	virtual const char* what() const throw() ;                                 \
 } ;
 
-RCPP_SIMPLE_EXCEPTION_CLASS(not_a_matrix)
-RCPP_SIMPLE_EXCEPTION_CLASS(index_out_of_bounds)
-RCPP_SIMPLE_EXCEPTION_CLASS(parse_error) 
-RCPP_SIMPLE_EXCEPTION_CLASS(not_s4)
-RCPP_SIMPLE_EXCEPTION_CLASS(no_such_slot)
-RCPP_SIMPLE_EXCEPTION_CLASS(not_a_closure)
-RCPP_SIMPLE_EXCEPTION_CLASS(no_such_function)
-RCPP_SIMPLE_EXCEPTION_CLASS(unevaluated_promise)
+RCPP_SIMPLE_EXCEPTION_CLASS(not_a_matrix, "not a matrix")
+RCPP_SIMPLE_EXCEPTION_CLASS(index_out_of_bounds, "index out of bounds")
+RCPP_SIMPLE_EXCEPTION_CLASS(parse_error, "parse error") 
+RCPP_SIMPLE_EXCEPTION_CLASS(not_s4, "not an S4 object")
+RCPP_SIMPLE_EXCEPTION_CLASS(no_such_slot, "no such slot")
+RCPP_SIMPLE_EXCEPTION_CLASS(not_a_closure, "not a closure")
+RCPP_SIMPLE_EXCEPTION_CLASS(no_such_function, "no such function")
+RCPP_SIMPLE_EXCEPTION_CLASS(unevaluated_promise, "promise not yet evaluated")
 
 
 RCPP_EXCEPTION_CLASS(not_compatible, message )



More information about the Rcpp-commits mailing list