Skip to content

Commit 138454e

Browse files
committed
removed one more ';'
1 parent e08d088 commit 138454e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inst/include/Rcpp/exceptions/cpp98/exceptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace Rcpp {
2828
#define RCPP_ADVANCED_EXCEPTION_CLASS(__CLASS__, __WHAT__) \
2929
class __CLASS__ : public std::exception{ \
3030
public: \
31-
__CLASS__( ) throw() : message( std::string(__WHAT__) + "." ){} ; \
31+
__CLASS__( ) throw() : message( std::string(__WHAT__) + "." ){} \
3232
__CLASS__( const std::string& message ) throw() : message( std::string(__WHAT__) + ": " + message + "." ){} \
3333
template <typename T1> \
3434
__CLASS__(const char* fmt, const T1& arg1) throw() : \

0 commit comments

Comments
 (0)