summaryrefslogtreecommitdiff
path: root/i/marvin/src/log/logger.hh
diff options
context:
space:
mode:
Diffstat (limited to 'i/marvin/src/log/logger.hh')
-rw-r--r--i/marvin/src/log/logger.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/i/marvin/src/log/logger.hh b/i/marvin/src/log/logger.hh
index d03fba7..5bb8e42 100644
--- a/i/marvin/src/log/logger.hh
+++ b/i/marvin/src/log/logger.hh
@@ -31,6 +31,8 @@
class Logger
{
public:
+ /// Empty destructor.
+ virtual ~Logger (void) { }
/// Create a logger.
static Logger *create (const std::string &loggerName);
/// Called when a message will be logged.
@@ -50,8 +52,6 @@ class Logger
protected:
/// Private empty constructor.
Logger (void) { }
- /// Empty destructor.
- virtual ~Logger (void) { }
};
#endif // logger_hh