@@ -696,8 +696,7 @@ namespace attributes {
696696 virtual bool commit (const std::vector<std::string>& includes);
697697
698698 private:
699- virtual void doWriteFunctions (const SourceFileAttributes& attributes,
700- bool verbose) {}
699+ virtual void doWriteFunctions (const SourceFileAttributes&, bool ) {}
701700 std::string getHeaderGuard () const ;
702701
703702 private:
@@ -2002,7 +2001,7 @@ namespace attributes {
20022001
20032002 void CppExportsIncludeGenerator::doWriteFunctions (
20042003 const SourceFileAttributes& attributes,
2005- bool verbose ) {
2004+ bool ) {
20062005
20072006 // don't write anything if there is no C++ interface
20082007 if (!attributes.hasInterface (kInterfaceCpp ))
@@ -2180,9 +2179,7 @@ namespace attributes {
21802179 }
21812180 }
21822181
2183- bool CppPackageIncludeGenerator::commit (
2184- const std::vector<std::string>& includes) {
2185-
2182+ bool CppPackageIncludeGenerator::commit (const std::vector<std::string>&) {
21862183 if (hasCppInterface ()) {
21872184
21882185 // create the include dir if necessary
@@ -2212,8 +2209,7 @@ namespace attributes {
22122209
22132210 void RExportsGenerator::doWriteFunctions (
22142211 const SourceFileAttributes& attributes,
2215- bool verbose) {
2216-
2212+ bool ) {
22172213 // write standalone roxygen chunks
22182214 const std::vector<std::vector<std::string> >& roxygenChunks =
22192215 attributes.roxygenChunks ();
@@ -2282,7 +2278,7 @@ namespace attributes {
22822278 }
22832279 }
22842280
2285- bool RExportsGenerator::commit (const std::vector<std::string>& includes ) {
2281+ bool RExportsGenerator::commit (const std::vector<std::string>&) {
22862282 return ExportsGenerator::commit ();
22872283 }
22882284
0 commit comments