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 6895dcd commit f3b9cd8Copy full SHA for f3b9cd8
inst/include/Rcpp/exceptions_impl.h
@@ -26,7 +26,7 @@ namespace Rcpp {
26
#include <execinfo.h>
27
28
// Extract mangled name e.g. ./test(baz+0x14)[0x400962]
29
- static std::string demangler_one(const char* input) {
+ static std::string demangler_one(const char* input) { // #nocov start
30
static std::string buffer;
31
buffer = input;
32
size_t last_open = buffer.find_last_of('(');
@@ -84,6 +84,6 @@ namespace Rcpp {
84
_["line" ] = -1,
85
_["stack"] = res);
86
trace.attr("class") = "Rcpp_stack_trace";
87
- rcpp_set_stack_trace(trace);
+ rcpp_set_stack_trace(trace); // #nocov end
88
}
89
};
0 commit comments