Class: AdLint::Cc1::UnsignedLongIntTypeId
- Inherits:
-
StandardTypeId
- Object
- TypeId
- StandardTypeId
- AdLint::Cc1::UnsignedLongIntTypeId
- Defined in:
- lib/adlint/cc1/type.rb
Instance Method Summary collapse
- #==(rhs_id) ⇒ Object
-
#initialize ⇒ UnsignedLongIntTypeId
constructor
A new instance of UnsignedLongIntTypeId.
Methods inherited from TypeId
Constructor Details
#initialize ⇒ UnsignedLongIntTypeId
Returns a new instance of UnsignedLongIntTypeId.
4551 4552 4553 |
# File 'lib/adlint/cc1/type.rb', line 4551 def initialize super("unsigned long int") end |
Instance Method Details
#==(rhs_id) ⇒ Object
4555 4556 4557 4558 4559 4560 4561 4562 |
# File 'lib/adlint/cc1/type.rb', line 4555 def ==(rhs_id) case rhs_id when UnsignedLongIntTypeId, UnsignedLongTypeId true else false end end |