Skip to content

Commit

Permalink
Merge pull request #183 from josusky/master
Browse files Browse the repository at this point in the history
Fix of compilation warning reported by GCC 4.9.3.
  • Loading branch information
vincent-richard committed Sep 7, 2018
2 parents ea0d248 + 71968d9 commit 0c81108
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/vmime/net/messageSet.cpp
Expand Up @@ -37,6 +37,11 @@
namespace vmime {
namespace net {

// messageSetEnumerator

messageSetEnumerator::~messageSetEnumerator()
{
}

// messageRange

Expand Down
2 changes: 1 addition & 1 deletion src/vmime/net/messageSet.hpp
Expand Up @@ -49,7 +49,7 @@ class UIDMessageRange;
class VMIME_EXPORT messageSetEnumerator {

public:

virtual ~messageSetEnumerator();
virtual void enumerateNumberMessageRange(const numberMessageRange& range) = 0;
virtual void enumerateUIDMessageRange(const UIDMessageRange& range) = 0;
};
Expand Down

0 comments on commit 0c81108

Please sign in to comment.