Class: AdLint::Cc1::SignedLongLongIntTypeId
- Inherits:
-
StandardTypeId
- Object
- TypeId
- StandardTypeId
- AdLint::Cc1::SignedLongLongIntTypeId
- Defined in:
- lib/adlint/cc1/type.rb
Instance Method Summary collapse
- #==(rhs_id) ⇒ Object
-
#initialize ⇒ SignedLongLongIntTypeId
constructor
A new instance of SignedLongLongIntTypeId.
Methods inherited from TypeId
Constructor Details
#initialize ⇒ SignedLongLongIntTypeId
Returns a new instance of SignedLongLongIntTypeId.
4779 4780 4781 |
# File 'lib/adlint/cc1/type.rb', line 4779 def initialize super("signed long long int") end |
Instance Method Details
#==(rhs_id) ⇒ Object
4783 4784 4785 4786 4787 4788 4789 4790 4791 |
# File 'lib/adlint/cc1/type.rb', line 4783 def ==(rhs_id) case rhs_id when SignedLongLongIntTypeId, LongLongTypeId, LongLongIntTypeId, SignedLongLongType true else false end end |