mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: CWordsDictionary::makeResult using references
This commit is contained in:
parent
e0f22bf104
commit
c27c28d7c4
2 changed files with 3 additions and 4 deletions
|
@ -77,7 +77,7 @@ public:
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
/// Make a result string
|
/// Make a result string
|
||||||
static CSString makeResult( const CSString key, const CSString word );
|
static CSString makeResult( const CSString &key, const CSString &word );
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
|
@ -247,10 +247,9 @@ void CWordsDictionary::exactLookupByKey( const CSString& key, CVectorSString& re
|
||||||
/*
|
/*
|
||||||
* Make a result string
|
* Make a result string
|
||||||
*/
|
*/
|
||||||
inline CSString CWordsDictionary::makeResult( const CSString key, const CSString word )
|
inline CSString CWordsDictionary::makeResult( const CSString &key, const CSString &word )
|
||||||
{
|
{
|
||||||
CSString res = key + CSString(": ") + word;
|
return key + CSString(": ") + word;
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue