File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
cpp/ql/src/semmle/code/cpp/dataflow/internal Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ private module PartialDefinitions {
256
256
innerDefinedExpr = getAPointerWrapperAccess ( pointer )
257
257
)
258
258
or
259
- // iterators passed by value without a copy constructor
259
+ // pointer wrappers passed by value without a copy constructor
260
260
exists ( Call call |
261
261
call = node and
262
262
call .getAnArgument ( ) = innerDefinedExpr and
@@ -265,7 +265,7 @@ private module PartialDefinitions {
265
265
not call instanceof OverloadedPointerDereferenceExpr
266
266
)
267
267
or
268
- // iterators passed by value with a copy constructor
268
+ // pointer wrappers passed by value with a copy constructor
269
269
exists ( Call call , ConstructorCall copy |
270
270
copy .getTarget ( ) instanceof CopyConstructor and
271
271
call = node and
You can’t perform that action at this time.
0 commit comments