Changeset 569 in dev


Ignore:
Timestamp:
May 6, 2008, 8:26:38 PM (16 years ago)
Author:
dai_9181
Message:

Parameters::GetStringメソッドは不使用なため、除去。

Location:
trunk/ab5.0/abdev/BasicCompiler_Common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Parameter.h

    r568 r569  
    100100        return (int)this->size() * PTR_SIZE;
    101101    }
    102 
    103     std::string GetString() const;
    104102};
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Parameter.cpp

    r568 r569  
    8787    return true;
    8888}
    89 
    90 std::string Parameters::GetString() const
    91 {
    92     std::string result;
    93 
    94     const Parameters &params = *this;
    95     BOOST_FOREACH( const Parameter *pParam, params )
    96     {
    97         if( result.size() )
    98         {
    99             result += ",";
    100         }
    101 
    102         result += pParam->GetVarName() + " As " + compiler.TypeToString( *pParam );
    103     }
    104     return result;
    105 }
Note: See TracChangeset for help on using the changeset viewer.