bug correction. Please do not use begin ( ) from returns of a function without const & s

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3612 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2010-10-05 15:46:08 +00:00
parent 4db463a4dc
commit a90f332a40
2 changed files with 7 additions and 6 deletions

View file

@ -132,13 +132,13 @@ uint32_t Type();
/**
* The name of the configuration file
*/
std::string Filename();
const std::string& Filename();
/**
* The hash computed for this configuration, can use this to compare to externally stored hash
* for validation checking
*/
std::string Hash();
const std::string& Hash();
protected: