Update cpp/ql/src/semmle/code/cpp/exprs/Cast.qll

Co-Authored-By: Jonas Jensen <jbj@github.com>
This commit is contained in:
Geoffrey White
2019-11-14 12:34:13 +00:00
committed by GitHub
parent 79a000d88f
commit b1dfc60422

View File

@@ -646,7 +646,7 @@ class UuidofOperator extends Expr, @uuidof {
* ```
* Base *ptr = new Derived;
* const std::type_info &info1 = typeid(ptr);
* printf("the type of ptr is: %s\n", typeid(ptr).name);
* printf("the type of ptr is: %s\n", typeid(ptr).name());
* ```
*/
class TypeidOperator extends Expr, @type_id {