Method: AdLint::Cc1::UnsignedLongLongIntType#initialize
- Defined in:
- lib/adlint/cc1/type.rb
#initialize(type_tbl) ⇒ UnsignedLongLongIntType
Returns a new instance of UnsignedLongLongIntType.
4795 4796 4797 4798 4799 4800 4801 |
# File 'lib/adlint/cc1/type.rb', line 4795 def initialize(type_tbl) # FIXME: StandardTypesAccessor is not ready until @type_table is # initialized. @type_table = type_tbl super(type_tbl, "unsigned long long int", long_long_size, long_long_alignment, false, true) end |