Class: AdLint::Cc1::UnsignedLongIntTypeId

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

Instance Method Summary collapse

Methods inherited from TypeId

#eql?, #hash

Constructor Details

#initializeUnsignedLongIntTypeId

Returns a new instance of UnsignedLongIntTypeId.



4551
4552
4553
# File 'lib/adlint/cc1/type.rb', line 4551

def initialize
  super("unsigned long int")
end

Instance Method Details

#==(rhs_id) ⇒ Object



4555
4556
4557
4558
4559
4560
4561
4562
# File 'lib/adlint/cc1/type.rb', line 4555

def ==(rhs_id)
  case rhs_id
  when UnsignedLongIntTypeId, UnsignedLongTypeId
    true
  else
    false
  end
end