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 40430f4 commit 9934749Copy full SHA for 9934749
src/attributes.cpp
@@ -2149,7 +2149,7 @@ namespace attributes {
2149
}
2150
2151
std::string CppExportsIncludeGenerator::getHeaderGuard() const {
2152
- return "_RCPP_" + packageCpp() + "_RCPPEXPORTS_H_GEN_";
+ return "RCPP_" + packageCpp() + "_RCPPEXPORTS_H_GEN_";
2153
2154
2155
CppPackageIncludeGenerator::CppPackageIncludeGenerator(
@@ -2197,7 +2197,7 @@ namespace attributes {
2197
2198
2199
std::string CppPackageIncludeGenerator::getHeaderGuard() const {
2200
- return "_RCPP_" + packageCpp() + "_H_GEN_";
+ return "RCPP_" + packageCpp() + "_H_GEN_";
2201
2202
2203
RExportsGenerator::RExportsGenerator(const std::string& packageDir,
0 commit comments