Skip to content

Commit 7ce82e4

Browse files
authored
enabled and fixed remaining -Wdeprecated-copy-dtor Clang compiler warnings (#4860)
1 parent 00fd3d9 commit 7ce82e4

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

cmake/compileroptions.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
7676
add_compile_options_safe(-Wno-documentation-unknown-command)
7777

7878
# TODO: fix and enable these warnings - or move to suppression list below
79-
add_compile_options_safe(-Wno-deprecated-copy-dtor)
8079
add_compile_options_safe(-Wno-inconsistent-missing-destructor-override) # caused by Qt moc code
8180
add_compile_options_safe(-Wno-unused-exception-parameter)
8281
add_compile_options_safe(-Wno-old-style-cast)

gui/codeeditorstyle.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ class CodeEditorStyle {
6767
// cppcheck-suppress naming-varname - TODO: fix this
6868
QColor SymbFGColor, QColor SymbBGColor,
6969
const QFont::Weight& SymbWeight);
70-
~CodeEditorStyle() {}
7170

7271
bool operator==(const CodeEditorStyle& rhs) const;
7372
bool operator!=(const CodeEditorStyle& rhs) const;

0 commit comments

Comments
 (0)