diff options
author | Vincent Richard <[email protected]> | 2013-03-07 16:54:47 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-03-08 07:19:55 +0000 |
commit | 3bf4797fc7ced28f245ab169df5da1732b3f120a (patch) | |
tree | 91c82efef0dc22c34355f4047b3d81fce2e8e3f1 | |
parent | Merge pull request #33 from mabrand/fix-static-ws (diff) | |
download | vmime-3bf4797fc7ced28f245ab169df5da1732b3f120a.tar.gz vmime-3bf4797fc7ced28f245ab169df5da1732b3f120a.zip |
Fixed compilation warning.
Diffstat (limited to '')
-rw-r--r-- | vmime/context.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vmime/context.hpp b/vmime/context.hpp index 76cc0ee4..c369fb92 100644 --- a/vmime/context.hpp +++ b/vmime/context.hpp @@ -109,7 +109,7 @@ protected: context(const context& ctx); virtual context& operator=(const context& ctx); - virtual void copyFrom(const context& ctx); + void copyFrom(const context& ctx); bool m_internationalizedEmail; charsetConverterOptions m_charsetConvOptions; |