Skip to content

Commit 7ba8e59

Browse files
committed
build: remove obsolete virtual specifier
1 parent 3ad5a17 commit 7ba8e59

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

cmake/mode.common.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ set(disabled_warnings
66
overloaded-virtual
77
unsupported-friend
88
enum-constexpr-conversion
9-
unnecessary-virtual-specifier
109
unused-parameter)
1110
include(CheckCXXCompilerFlag)
1211
foreach(warning ${disabled_warnings})

configure.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,6 @@ def get_warning_options(cxx):
15481548
'-Wno-unsupported-friend',
15491549
'-Wno-missing-field-initializers',
15501550
'-Wno-deprecated-copy',
1551-
'-Wno-unnecessary-virtual-specifier',
15521551
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77728
15531552
'-Wno-psabi',
15541553
'-Wno-enum-constexpr-conversion',

cql3/column_identifier.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public:
8282

8383
const sstring& text() const;
8484

85-
virtual sstring to_string() const;
85+
sstring to_string() const;
8686
sstring to_cql_string() const;
8787

8888
friend std::hash<column_identifier_raw>;

0 commit comments

Comments
 (0)