Method: AdLint::Cc1::UnsignedShortIntType#initialize

Defined in:
lib/adlint/cc1/type.rb

#initialize(type_tbl) ⇒ UnsignedShortIntType

Returns a new instance of UnsignedShortIntType.



4036
4037
4038
4039
4040
4041
4042
# File 'lib/adlint/cc1/type.rb', line 4036

def initialize(type_tbl)
  # FIXME: StandardTypesAccessor is not ready until @type_table is
  #        initialized.
  @type_table = type_tbl
  super(type_tbl, "unsigned short int",
        short_size, short_alignment, false, true)
end