Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4720c5a commit d649835Copy full SHA for d649835
2 files changed
cpp/ql/src/semmle/code/cpp/Type.qll
@@ -601,6 +601,10 @@ class VoidType extends BuiltInType {
601
602
/**
603
* The C/C++ wide character type.
604
+ *
605
+ * Note that on some platforms `wchar_t` doesn't exist as a built-in
606
+ * type but a typedef is provided. Consider using the `Wchar_t` QL
607
+ * class to include these types.
608
*/
609
class WideCharType extends IntegralType {
610
cpp/ql/src/semmle/code/cpp/commons/CommonType.qll
@@ -80,6 +80,10 @@ class Uintmax_t extends Type {
80
81
82
* The C/C++ wchar_t type.
83
84
85
+ * type but a typedef is provided. This QL class includes both cases
86
+ * (see also `WideCharType`).
87
88
class Wchar_t extends Type {
89
Wchar_t() {
0 commit comments