We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08d088 commit 138454eCopy full SHA for 138454e
inst/include/Rcpp/exceptions/cpp98/exceptions.h
@@ -28,7 +28,7 @@ namespace Rcpp {
28
#define RCPP_ADVANCED_EXCEPTION_CLASS(__CLASS__, __WHAT__) \
29
class __CLASS__ : public std::exception{ \
30
public: \
31
- __CLASS__( ) throw() : message( std::string(__WHAT__) + "." ){} ; \
+ __CLASS__( ) throw() : message( std::string(__WHAT__) + "." ){} \
32
__CLASS__( const std::string& message ) throw() : message( std::string(__WHAT__) + ": " + message + "." ){} \
33
template <typename T1> \
34
__CLASS__(const char* fmt, const T1& arg1) throw() : \
0 commit comments