diff options
author | Vincent Richard <[email protected]> | 2014-01-31 20:54:38 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2014-01-31 20:54:38 +0000 |
commit | 595259332aac25494bead8b13e1490333b0740af (patch) | |
tree | 6fe907bf5c49071c5251c4d3f65955aaf92c485f | |
parent | Fixed type. (diff) | |
parent | Merge pull request #67 from tholdawa/constFix (diff) | |
download | vmime-595259332aac25494bead8b13e1490333b0740af.tar.gz vmime-595259332aac25494bead8b13e1490333b0740af.zip |
Merge branch 'master' of https://github.com/kisli/vmime
-rw-r--r-- | src/vmime/utility/path.cpp | 2 | ||||
-rw-r--r-- | src/vmime/utility/path.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vmime/utility/path.cpp b/src/vmime/utility/path.cpp index aaa3192e..7ce028ff 100644 --- a/src/vmime/utility/path.cpp +++ b/src/vmime/utility/path.cpp @@ -292,7 +292,7 @@ path path::fromString(const string& str, const string& sep, const charset& cset) } -const string path::toString(const string& sep, const charset& cset) +const string path::toString(const string& sep, const charset& cset) const { string str; diff --git a/src/vmime/utility/path.hpp b/src/vmime/utility/path.hpp index 02fd9ce6..310fa24b 100644 --- a/src/vmime/utility/path.hpp +++ b/src/vmime/utility/path.hpp @@ -175,7 +175,7 @@ public: * vmime::charset::getLocalCharset() to use the default charset of your system) * @return a string representing this path */ - const string toString(const string& sep, const charset& cset); + const string toString(const string& sep, const charset& cset) const; private: |