Class: AdLint::Cc1::UnsignedIntTypeId
- Inherits:
-
StandardTypeId
- Object
- TypeId
- StandardTypeId
- AdLint::Cc1::UnsignedIntTypeId
- Defined in:
- lib/adlint/cc1/type.rb
Instance Method Summary collapse
- #==(rhs_id) ⇒ Object
-
#initialize ⇒ UnsignedIntTypeId
constructor
A new instance of UnsignedIntTypeId.
Methods inherited from TypeId
Constructor Details
#initialize ⇒ UnsignedIntTypeId
Returns a new instance of UnsignedIntTypeId.
4286 4287 4288 |
# File 'lib/adlint/cc1/type.rb', line 4286 def initialize super("unsigned int") end |
Instance Method Details
#==(rhs_id) ⇒ Object
4290 4291 4292 4293 4294 4295 4296 4297 |
# File 'lib/adlint/cc1/type.rb', line 4290 def ==(rhs_id) case rhs_id when UnsignedIntTypeId, UnsignedTypeId true else false end end |