Skip to content

Commit

Permalink
build: disable -Wnon-virtual-dtor compiler warning
Browse files Browse the repository at this point in the history
See also named-data/NFD@0a05f7a

Change-Id: If93d766fa8ee2b0cb6a0eb8ff9febc2dc0a4cac0
  • Loading branch information
Pesa committed Oct 17, 2023
1 parent 2ab04a2 commit 816767b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .waf-tools/default-compiler-flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ def getGeneralFlags(self, conf):
'-Wpedantic',
'-Wenum-conversion',
'-Wextra-semi',
'-Wnon-virtual-dtor',
'-Wno-unused-parameter',
]
__linkFlags = ['-Wl,-O1']
Expand Down
2 changes: 1 addition & 1 deletion tests/chunks/consumer.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ BOOST_AUTO_TEST_CASE(OutOfOrderData)
BOOST_CHECK(output.is_equal(testStrings[2]));
}

class PipelineInterestsDummy : public PipelineInterests
class PipelineInterestsDummy final : public PipelineInterests
{
public:
using PipelineInterests::PipelineInterests;
Expand Down

0 comments on commit 816767b

Please sign in to comment.