Changeset 703 in dev
- Timestamp:
- Jul 21, 2008, 2:29:18 PM (16 years ago)
- Location:
- trunk/ab5.0/abdev/compiler_x64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/compiler_x64/Compile_Func.cpp
r687 r703 216 216 217 217 218 if( userProc. GetMethod().IsDynamic() )218 if( userProc.HasParentClass() && userProc.GetMethod().IsDynamic() ) 219 219 { 220 220 //mov rdx,rax … … 258 258 259 259 std::vector<const UserProc *> subs; 260 if( userProc. GetMethod().IsDynamic() )260 if( userProc.HasParentClass() && userProc.GetMethod().IsDynamic() ) 261 261 { 262 262 dgClass.GetStaticMethods().Enum( "_CreateDynamicDelegate", subs ); -
trunk/ab5.0/abdev/compiler_x64/stdafx.h
r650 r703 58 58 #include <DataTableGenerator.h> 59 59 #include <BreakPoint.h> 60 61 #define lstrlenA strlen 62 #define lstrcmpA strcmp 63 #define lstrcpyA strcpy 64 #define lstrcmpiA _stricmp
Note:
See TracChangeset
for help on using the changeset viewer.