diff options
author | Neil <nyamatongwe@gmail.com> | 2022-02-17 21:56:04 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-02-17 21:56:04 +1100 |
commit | 6f1e5d71af3953e8e65121bf9b40b8c6c42ba523 (patch) | |
tree | 3c79b4f913f45d8d5ff271e77b645baaabb6bf2f | |
parent | ee6bf8016daed4204b25ed680e9e5b5fab953e33 (diff) | |
download | scintilla-mirror-6f1e5d71af3953e8e65121bf9b40b8c6c42ba523.tar.gz |
Suppress cppcheck warnings where it doesn't undertand changing dropWentOutside
in called methods.
-rw-r--r-- | cppcheck.suppress | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cppcheck.suppress b/cppcheck.suppress index 1e015d4ff..9b78f1309 100644 --- a/cppcheck.suppress +++ b/cppcheck.suppress @@ -31,6 +31,10 @@ constParameter:scintilla/lexlib/StyleContext.cxx // ScintillaDocument is providing an API and there are no consumers of the API inside Scintilla
unusedFunction:scintilla/qt/ScintillaEdit/ScintillaDocument.cpp
+// Doesn't understand changing dropWentOutside in Editor
+knownConditionTrueFalse:scintilla/qt/ScintillaEditBase/ScintillaQt.cpp
+knownConditionTrueFalse:scintilla/win32/ScintillaWin.cxx
+
// moc_ files show #error as they are not built with standard context
preprocessorErrorDirective:scintilla/qt/*.cpp
|