Changeset 79 in dev for BasicCompiler64/Compile_Var.cpp
- Timestamp:
- Mar 25, 2007, 5:58:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_Var.cpp
r76 r79 1074 1074 } 1075 1075 1076 void dim( bool isRef,char *VarName,int *SubScripts,Type &type,char *InitBuf,char *ConstractParameter,DWORD dwFlags){1076 void dim( char *VarName,int *SubScripts,Type &type,char *InitBuf,char *ConstractParameter,DWORD dwFlags){ 1077 1077 if( UserProc::IsGlobalAreaCompiling() ){ 1078 1078 ///////////////////////// … … 1080 1080 ///////////////////////// 1081 1081 1082 AddGlobalVariable( isRef,VarName,SubScripts,type,InitBuf,ConstractParameter,dwFlags);1082 AddGlobalVariable(VarName,SubScripts,type,InitBuf,ConstractParameter,dwFlags); 1083 1083 } 1084 1084 else{ … … 1095 1095 bool isConst = ( dwFlags & DIMFLAG_CONST ) ? true:false; 1096 1096 1097 Variable *pVar = new Variable( VarName, type, isConst , isRef);1097 Variable *pVar = new Variable( VarName, type, isConst ); 1098 1098 1099 1099 if( SubScripts[0] != -1 ){
Note:
See TracChangeset
for help on using the changeset viewer.