Skip to content

Commit 084c95a

Browse files
committed
Remove superfluous semicolons
1 parent 3c880fa commit 084c95a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vignettes/Rcpp-extending.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ to \proglang{R} as an external pointer. It can be used instead of specializing
210210
#include RcppCommon.h
211211
#include foobar.h
212212
213-
RCPP_EXPOSED_WRAP(Bar);
213+
RCPP_EXPOSED_WRAP(Bar)
214214
```
215215

216216
## Templates and partial specialization
@@ -301,7 +301,7 @@ should not be used simultaneously.
301301
#include RcppCommon.h
302302
#include foobar.h
303303
304-
RCPP_EXPOSED_AS(Bar);
304+
RCPP_EXPOSED_AS(Bar)
305305
```
306306

307307
With this being said, there is one additional macro that can be used to

0 commit comments

Comments
 (0)