Changeset 73 in dev for BasicCompiler_Common/Overload.cpp
- Timestamp:
- Mar 16, 2007, 11:07:14 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Overload.cpp
r71 r73 7 7 #endif 8 8 9 S UBINFO*OverloadSolutionWithStrParam(9 SubInfo *OverloadSolutionWithStrParam( 10 10 const char *name, 11 std::vector<S UBINFO*> &subs,11 std::vector<SubInfo *> &subs, 12 12 const char *Parameter, 13 13 const char *ObjectName, … … 37 37 */ 38 38 //パラメータオブジェクトを生成 39 if(lstrcmp(Parameter,"\"test\"")==0){ 40 int i=0; 41 } 39 42 pobj_parameter=new ParamImpl(Parameter); 40 43 if(pReturnTypeInfo) pobj_parameter->SetReturnType(pReturnTypeInfo); 41 44 42 45 43 S UBINFO*psi;46 SubInfo *psi; 44 47 psi=pobj_parameter->OverloadSolution(name,subs); 45 48 … … 52 55 } 53 56 54 S UBINFO*OverloadSolution(57 SubInfo *OverloadSolution( 55 58 const char *name, 56 std::vector<S UBINFO*> &subs,59 std::vector<SubInfo *> &subs, 57 60 const PARAMETER_INFO *ppi, 58 61 const int ParmNum, … … 68 71 if(pReturnTypeInfo) pobj_Parameter->SetReturnType(pReturnTypeInfo); 69 72 70 S UBINFO*psi;73 SubInfo *psi; 71 74 psi=pobj_Parameter->OverloadSolution(name,subs); 72 75
Note:
See TracChangeset
for help on using the changeset viewer.