File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
cpp/ql/lib/semmle/code/cpp/exprs Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -255,8 +255,10 @@ class FunctionCall extends Call, @funbindexpr {
255
255
/**
256
256
* Gets the function called by this call.
257
257
*
258
- * In the case of virtual function calls, the result is the most-specific function in the override tree (as
259
- * determined by the compiler) such that the target at runtime will be one of `result.getAnOverridingFunction*()`.
258
+ * In the case of virtual function calls, the result is the most-specific function in the override tree
259
+ * such that the target at runtime will be one of `result.getAnOverridingFunction*()`. The most-specific
260
+ * function is determined by the compiler based on the compile time type of the object the function is a
261
+ * member of.
260
262
*/
261
263
override Function getTarget ( ) { funbind ( underlyingElement ( this ) , unresolveElement ( result ) ) }
262
264
You can’t perform that action at this time.
0 commit comments