File tree Expand file tree Collapse file tree
cpp/ql/src/semmle/code/cpp Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -629,7 +629,7 @@ class ShortType extends IntegralType {
629629
630630/**
631631 * The C/C++ integer types. See 4.4. This includes `int`, `signed int`
632- * and `unsigned int`; `int` and `signed int` are equivalent .
632+ * and `unsigned int`.
633633 * ```
634634 * unsigned int ui;
635635 * ```
@@ -646,7 +646,7 @@ class IntType extends IntegralType {
646646
647647/**
648648 * The C/C++ long types. See 4.4. This includes `long`, `signed long`
649- * and `unsigned long`; `long` and `signed long` are equivalent .
649+ * and `unsigned long`.
650650 * ```
651651 * long l;
652652 * ```
@@ -663,7 +663,7 @@ class LongType extends IntegralType {
663663
664664/**
665665 * The C/C++ long long types. See 4.4. This includes `long long`, `signed long long`
666- * and `unsigned long long`; `long long` and `signed long long` are equivalent .
666+ * and `unsigned long long`.
667667 * ```
668668 * signed long long sll;
669669 * ```
@@ -681,8 +681,7 @@ class LongLongType extends IntegralType {
681681/**
682682 * The GNU C __int128 primitive types. They are not part of standard C/C++.
683683 *
684- * This includes `__int128`, `signed __int128`
685- * and `unsigned __int128`; `__int128` and `signed __int128` are equivalent.
684+ * This includes `__int128`, `signed __int128` and `unsigned __int128`.
686685 * ```
687686 * unsigned __int128 ui128;
688687 * ```
You can’t perform that action at this time.
0 commit comments