class AdLint::Cc1::UnsignedLongLongIntTypeId

Public Class Methods

new() click to toggle source
Calls superclass method AdLint::Cc1::StandardTypeId::new
# File lib/adlint/cc1/type.rb, line 4825
def initialize
  super("unsigned long long int")
end

Public Instance Methods

==(rhs_id) click to toggle source
# File lib/adlint/cc1/type.rb, line 4829
def ==(rhs_id)
  case rhs_id
  when UnsignedLongLongIntTypeId, UnsignedLongLongTypeId
    true
  else
    false
  end
end