Ignore:
Timestamp:
Jul 30, 2007, 3:11:26 AM (17 years ago)
Author:
dai_9181
Message:

SystemProcのリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/NativeCode.h

    r250 r252  
    151151    {
    152152    }
     153    NativeCode( const char *codeBuffer, int size )
     154        : allocateSize( 8192 )
     155        , codeBuffer( (char *)malloc( allocateSize ) )
     156        , size( 0 )
     157    {
     158        Put( codeBuffer, size );
     159    }
    153160    ~NativeCode()
    154161    {
Note: See TracChangeset for help on using the changeset viewer.