aboutsummaryrefslogtreecommitdiff
path: root/lldb/bindings/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/bindings/CMakeLists.txt')
-rw-r--r--lldb/bindings/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/bindings/CMakeLists.txt b/lldb/bindings/CMakeLists.txt
index b44ed59..296eae1 100644
--- a/lldb/bindings/CMakeLists.txt
+++ b/lldb/bindings/CMakeLists.txt
@@ -23,7 +23,11 @@ endif()
set(SWIG_COMMON_FLAGS
-c++
- -w361,362 # Ignore warnings about ignored operator overloads
+ # Ignored warnings:
+ # 361: operator! ignored.
+ # 362: operator= ignored.
+ # 509: Overloaded method declaration effectively ignored, shadowed by previous declaration.
+ -w361,362,509
-features autodoc
-I${LLDB_SOURCE_DIR}/include
-I${CMAKE_CURRENT_SOURCE_DIR}