Ignore:
Timestamp:
Jul 21, 2008, 12:57:10 AM (16 years ago)
Author:
イグトランス (egtra)
Message:

VN_SIZEが小さくてControlがコンパイルできなかったので、増量(_TermOpe関数でエラーになるのでそこを直したが、それだけではだめだった)。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/VariableOpe.cpp

    r684 r699  
    188188}
    189189
     190void GetWithName(std::string& buffer){
     191    extern WithInfos withInfos;
     192    std::string tmp;
     193    tmp.reserve(1024);
     194    BOOST_FOREACH( const WithInfo &withInfo, withInfos )
     195    {
     196        tmp+=withInfo.name;
     197    }
     198    tmp.swap(buffer);
     199}
    190200
    191201void GetArrange(char *variable,char *variAnswer, Subscripts &subscripts ){
Note: See TracChangeset for help on using the changeset viewer.