class AdLint::Cc1::SignedShortIntTypeId
Public Class Methods
new()
click to toggle source
Calls superclass method
AdLint::Cc1::StandardTypeId::new
# File lib/adlint/cc1/type.rb, line 4021 def initialize super("signed short int") end
Public Instance Methods
==(rhs_id)
click to toggle source
# File lib/adlint/cc1/type.rb, line 4025 def ==(rhs_id) case rhs_id when SignedShortIntTypeId, ShortTypeId, ShortIntTypeId, SignedShortTypeId true else false end end