Skip to content

Commit 732392c

Browse files
committed
remove extra ';' which -Wpedanctic complains about
updated copyright header
1 parent 559de61 commit 732392c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

inst/include/Rcpp/Environment.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Environment.h: Rcpp R/C++ interface class library -- access R environments
44
//
55
// Copyright (C) 2009 - 2013 Dirk Eddelbuettel and Romain Francois
6+
// Copyright (C) 2014 Dirk Eddelbuettel, Romain Francois and Kevin Ushey
67
//
78
// This file is part of Rcpp.
89
//
@@ -358,7 +359,7 @@ typedef Environment_Impl<PreserveStorage> Environment ;
358359
inline Environment new_env(int size = 29) {
359360
Shield<SEXP> sizeSEXP(Rf_ScalarInteger(size));
360361
return R_NewHashedEnv(R_EmptyEnv, sizeSEXP);
361-
};
362+
}
362363

363364

364365
} // namespace Rcpp

0 commit comments

Comments
 (0)