Class: AdLint::Cc1::SignedLongLongIntTypeId

Inherits:
StandardTypeId show all
Defined in:
lib/adlint/cc1/type.rb

Instance Method Summary collapse

Methods inherited from TypeId

#eql?, #hash

Constructor Details

#initializeSignedLongLongIntTypeId

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