summaryrefslogtreecommitdiff
path: root/test/test11-04.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/test11-04.txt')
-rw-r--r--test/test11-04.txt23
1 files changed, 22 insertions, 1 deletions
diff --git a/test/test11-04.txt b/test/test11-04.txt
index cd4bfc0..62a6828 100644
--- a/test/test11-04.txt
+++ b/test/test11-04.txt
@@ -1,7 +1,28 @@
test11.cpp: In member function 'void Object1::func2(Data1*, Data1*)':
test11.cpp:25:19: warning: Using parameter 'ptr1' without checking for null pointer
- ptr1->val = 100;
+ ptr1->val = 200;
^
test11.cpp:29:15: warning: Using parameter 'ptr1' without checking for null pointer
+ ptr1->val = 300;
+ ^
+test11.cpp: In member function 'void Object1::func3(Data1*, Data1*)':
+test11.cpp:34:27: warning: Using parameter 'ptr1' without checking for null pointer
+ if (ptr1 || ptr1->val == 100)
+ ^
+test11.cpp:39:15: warning: Using parameter 'ptr1' without checking for null pointer
+ ptr1->val = 200;
+ ^
+test11.cpp: In member function 'void Object1::func4(Data1*, Data1*)':
+test11.cpp:44:28: warning: Using parameter 'ptr1' without checking for null pointer
+ if (!ptr1 && ptr1->val == 100)
+ ^
+test11.cpp:49:15: warning: Using parameter 'ptr1' without checking for null pointer
ptr1->val = 200;
^
+test11.cpp: In member function 'void Object1::func6(Data1*, Data1*)':
+test11.cpp:70:15: warning: Using parameter 'ptr1' without checking for null pointer
+ ptr1->val = 300;
+ ^
+test11.cpp:71:15: warning: Using parameter 'ptr2' without checking for null pointer
+ ptr2->val = 400;
+ ^