summaryrefslogtreecommitdiff
path: root/test/test39-04.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-07-23 22:04:01 +0300
committerAndrei Karas <akaras@inbox.ru>2015-07-23 22:04:01 +0300
commitb3f49ea6b503e16eb3f276041fe59b8c5610fc17 (patch)
tree3b22297deada4859e2c190c5c217adc27780edec /test/test39-04.txt
parentb4d939b41aa569853b8367b1796bf6c3a83f5114 (diff)
downloadparanucker-b3f49ea6b503e16eb3f276041fe59b8c5610fc17.tar.gz
paranucker-b3f49ea6b503e16eb3f276041fe59b8c5610fc17.tar.bz2
paranucker-b3f49ea6b503e16eb3f276041fe59b8c5610fc17.tar.xz
paranucker-b3f49ea6b503e16eb3f276041fe59b8c5610fc17.zip
Update test 39.
Diffstat (limited to 'test/test39-04.txt')
-rw-r--r--test/test39-04.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/test/test39-04.txt b/test/test39-04.txt
index 805e129..c3fd401 100644
--- a/test/test39-04.txt
+++ b/test/test39-04.txt
@@ -9,11 +9,25 @@ test39.cpp: In member function 'void Object1::func2(Data1*) const':
test39.cpp:96:51: warning: Using parameter 'ptr1' without checking for null pointer
ptr1->ptrval = reinterpret_cast<Data1*>(1);
^
+test39.cpp:96:15: warning: Using field 'ptr1' without checking for null pointer
+ ptr1->ptrval = reinterpret_cast<Data1*>(1);
+ ^
test39.cpp: In member function 'void Object1::func3(Data1*) const':
test39.cpp:119:25: warning: Using parameter 'ptr1' without checking for null pointer
ptr1->ptrval = 0;
^
-test39.cpp: In member function 'void Object1::func6(Data1*) const':
+test39.cpp:119:15: warning: Using field 'ptr1' without checking for null pointer
+ ptr1->ptrval = 0;
+ ^
+test39.cpp: In member function 'int Object1::func6(Data1*) const':
test39.cpp:228:27: warning: Using variable 'ptr1' without checking for null pointer
arr[1] = ptr1->val;
^
+test39.cpp:238:22: warning: Using field 'ptr1' without checking for null pointer
+ return ptr1->val;
+ ^
+test39.cpp: In member function 'void Object1::func7(Data1*, Data1*) const':
+test39.cpp:252:23: warning: Using field 'ptr1' without checking for null pointer
+ if (ptr1->val == ptr2->val)
+ ^
+test39.cpp:252:23: warning: Using field 'ptr2' without checking for null pointer