File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
cpp/ql/src/semmle/code/cpp/commons Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -88,9 +88,7 @@ abstract class MaximumWidthIntegralType extends UserType {
88
88
* A common base type for describing enum types that are based on fixed-width types.
89
89
*/
90
90
class FixedWidthEnumType extends UserType {
91
- FixedWidthEnumType ( ) {
92
- this .( Enum ) .getExplicitUnderlyingType ( ) instanceof FixedWidthIntegralType
93
- }
91
+ FixedWidthEnumType ( ) { this .( Enum ) .getExplicitUnderlyingType ( ) instanceof FixedWidthIntegralType }
94
92
}
95
93
96
94
/**
@@ -313,9 +311,7 @@ class UInt_fast64_t extends MinimumWidthIntegralType {
313
311
* The C/C++ `intmax_t` type.
314
312
*/
315
313
class Intmax_t extends MaximumWidthIntegralType {
316
- Intmax_t ( ) {
317
- this .hasGlobalOrStdName ( "intmax_t" )
318
- }
314
+ Intmax_t ( ) { this .hasGlobalOrStdName ( "intmax_t" ) }
319
315
320
316
override string getAPrimaryQlClass ( ) { result = "Intmax_t" }
321
317
}
@@ -324,9 +320,7 @@ class Intmax_t extends MaximumWidthIntegralType {
324
320
* The C/C++ `uintmax_t` type.
325
321
*/
326
322
class Uintmax_t extends MaximumWidthIntegralType {
327
- Uintmax_t ( ) {
328
- this .hasGlobalOrStdName ( "uintmax_t" )
329
- }
323
+ Uintmax_t ( ) { this .hasGlobalOrStdName ( "uintmax_t" ) }
330
324
331
325
override string getAPrimaryQlClass ( ) { result = "Uintmax_t" }
332
326
}
You can’t perform that action at this time.
0 commit comments