Ignore:
Timestamp:
May 10, 2008, 6:28:58 PM (16 years ago)
Author:
dai_9181
Message:

vtblOffsetの内部保持型をintに統一。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Class.h

    r587 r593  
    431431   
    432432private:
    433     long vtbl_offset;
    434     long comVtblOffset;
    435     long vtblMasterListOffset;
     433    int vtbl_offset;
     434    int comVtblOffset;
     435    int vtblMasterListOffset;
    436436public:
    437437    std::vector<long> vtblMasterList;
    438     LONG_PTR GetVtblOffset() const
     438    int GetVtblOffset() const
    439439    {
    440440        return vtbl_offset;
     
    444444        this->vtbl_offset = vtblOffset;
    445445    }
    446     long GetComVtblOffset() const
     446    int GetComVtblOffset() const
    447447    {
    448448        return comVtblOffset;
Note: See TracChangeset for help on using the changeset viewer.