We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd4d39 commit a84f192Copy full SHA for a84f192
cpp/ql/src/semmle/code/cpp/Enum.qll
@@ -2,11 +2,16 @@ import semmle.code.cpp.Type
2
private import semmle.code.cpp.internal.ResolveClass
3
4
/**
5
- * A C/C++ enum [N4140 7.2]. For example, the type `MyEnum` in:
+ * A C/C++ enum [N4140 7.2]. For example, the types `MyEnum` and
6
+ * `MyScopedEnum` in:
7
* ```
8
* enum MyEnum {
9
* MyEnumConstant
10
* };
11
+ *
12
+ * enum class MyScopedEnum {
13
+ * MyScopedEnumConstant
14
+ * };
15
16
* This includes C++ scoped enums, see the `ScopedEnum` QL class.
17
*/
0 commit comments