Changeset 275 for Include/system/gc.sbp


Ignore:
Timestamp:
Jun 13, 2007, 12:00:44 AM (17 years ago)
Author:
dai
Message:

(32ビットコンパイラ)
クラス情報取得時のクラス先読み処理で名前空間の関係が崩れてしまうバグを修正。
インクルードパスに'/'文字を含めたときに'
'として判断するようにした。

(ライブラリ)
ActiveBasic.Core名前空間を作成した(動的型情報に関する内部コードをここに移動)。
DateTimeクラスをSystem名前空間に入れた。
TimeSpanクラスをSystem名前空間に入れた。
TimeInfoクラスをSystem名前空間に入れた。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/system/gc.sbp

    r266 r275  
    278278    ' オブジェクトのスキャン
    279279    Function ScanObject(pObject As *Object, pbMark As *Byte) As Boolean
    280         Dim classTypeInfo = Nothing As _System_TypeForClass
    281         classTypeInfo = pObject->GetType() As _System_TypeForClass
     280        Dim classTypeInfo = Nothing As ActiveBasic.Core._System_TypeForClass
     281        classTypeInfo = pObject->GetType() As ActiveBasic.Core._System_TypeForClass
    282282
    283283        If IsNull( classTypeInfo ) Then
Note: See TracChangeset for help on using the changeset viewer.