Class: AdLint::Cc1::UnsignedLongLongIntTypeId

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

Instance Method Summary collapse

Methods inherited from TypeId

#eql?, #hash

Constructor Details

#initializeUnsignedLongLongIntTypeId

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