We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6639d6d commit 488d41fCopy full SHA for 488d41f
cpp/ql/src/semmle/code/cpp/exprs/Cast.qll
@@ -1,3 +1,8 @@
1
+/**
2
+ * Provides classes for modeling C/C++ casts and conversions, as well as some
3
+ * type related operators such as `sizeof` and `alignof`.
4
+ */
5
+
6
import semmle.code.cpp.exprs.Expr
7
private import semmle.code.cpp.internal.ResolveClass
8
@@ -660,6 +665,9 @@ class UuidofOperator extends Expr, @uuidof {
660
665
* ```
661
666
*/
662
667
class TypeidOperator extends Expr, @type_id {
668
+ /**
669
+ * Gets the type that is returned by this typeid expression.
670
663
671
Type getResultType() { typeid_bind(underlyingElement(this), unresolveElement(result)) }
664
672
673
/**
0 commit comments