diff options
author | Vincent Richard <[email protected]> | 2006-07-20 19:29:07 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2006-07-20 19:29:07 +0000 |
commit | aee2b6dd74029de8fed34be5095eda8c689ac3dd (patch) | |
tree | 6856b7fbcc17763eec02a1dcc523f7649ecb4380 | |
parent | Replaced & with ref<> + clean up. (diff) | |
download | vmime-aee2b6dd74029de8fed34be5095eda8c689ac3dd.tar.gz vmime-aee2b6dd74029de8fed34be5095eda8c689ac3dd.zip |
Made 'string' constructor explicit to avoid misuse.
-rw-r--r-- | vmime/utility/path.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vmime/utility/path.hpp b/vmime/utility/path.hpp index da0dc020..8c66367e 100644 --- a/vmime/utility/path.hpp +++ b/vmime/utility/path.hpp @@ -49,7 +49,7 @@ public: path(); path(const component& c); path(const path& p); - path(const string& s); + explicit path(const string& s); // Append a component to a path path operator/(const path& p) const; |