Skip to content

Commit 6e7d3ad

Browse files
committed
add missing # to nocov markers
1 parent bef8183 commit 6e7d3ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/udunits.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,14 @@ void ud_unmap_symbols(CharacterVector symbols) {
137137

138138
/* Thin wrappers **************************************************************/
139139

140-
// nocov start
140+
// # nocov start
141141

142142
// [[Rcpp::export]]
143143
SEXP R_ut_get_dimensionless_unit_one() {
144144
return ut_wrap(ut_get_dimensionless_unit_one(sys));
145145
}
146146

147-
// nocov end
147+
// # nocov end
148148

149149
// [[Rcpp::export]]
150150
SEXP R_ut_new_base_unit() {
@@ -181,7 +181,7 @@ LogicalVector R_ut_are_convertible(SEXP a, SEXP b) {
181181
return ut_are_convertible(u1, u2) != 0;
182182
}
183183

184-
// nocov start
184+
// # nocov start
185185

186186
// [[Rcpp::export]]
187187
SEXP R_ut_scale(SEXP unit, double factor) {
@@ -222,7 +222,7 @@ SEXP R_ut_root(SEXP a, IntegerVector i) {
222222
return ut_wrap(ut_root(ut_unwrap(a), i[0]));
223223
}
224224

225-
// nocov end
225+
// # nocov end
226226

227227
// [[Rcpp::export]]
228228
SEXP R_ut_log(SEXP a, NumericVector base) {

0 commit comments

Comments
 (0)