Class: AdLint::Cc1::LongLongIntTypeId
- Inherits:
-
StandardTypeId
- Object
- TypeId
- StandardTypeId
- AdLint::Cc1::LongLongIntTypeId
- Defined in:
- lib/adlint/cc1/type.rb
Instance Method Summary collapse
- #==(rhs_id) ⇒ Object
-
#initialize ⇒ LongLongIntTypeId
constructor
A new instance of LongLongIntTypeId.
Methods inherited from TypeId
Constructor Details
#initialize ⇒ LongLongIntTypeId
Returns a new instance of LongLongIntTypeId.
4733 4734 4735 |
# File 'lib/adlint/cc1/type.rb', line 4733 def initialize super("long long int") end |
Instance Method Details
#==(rhs_id) ⇒ Object
4737 4738 4739 4740 4741 4742 4743 4744 4745 |
# File 'lib/adlint/cc1/type.rb', line 4737 def ==(rhs_id) case rhs_id when LongLongIntTypeId, LongLongTypeId, SignedLongLongTypeId, SignedLongLongIntTypeId true else false end end |