Class: AdLint::Cc1::UnsignedLongLongIntTypeId
- Inherits:
-
StandardTypeId
- Object
- TypeId
- StandardTypeId
- AdLint::Cc1::UnsignedLongLongIntTypeId
- Defined in:
- lib/adlint/cc1/type.rb
Instance Method Summary collapse
- #==(rhs_id) ⇒ Object
-
#initialize ⇒ UnsignedLongLongIntTypeId
constructor
A new instance of UnsignedLongLongIntTypeId.
Methods inherited from TypeId
Constructor Details
#initialize ⇒ UnsignedLongLongIntTypeId
Returns a new instance of UnsignedLongLongIntTypeId.
4825 4826 4827 |
# File 'lib/adlint/cc1/type.rb', line 4825 def initialize super("unsigned long long int") end |
Instance Method Details
#==(rhs_id) ⇒ Object
4829 4830 4831 4832 4833 4834 4835 4836 |
# File 'lib/adlint/cc1/type.rb', line 4829 def ==(rhs_id) case rhs_id when UnsignedLongLongIntTypeId, UnsignedLongLongTypeId true else false end end |