summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop')
-rw-r--r--Swiften/EventLoop/SimpleEventLoop.cpp6
-rw-r--r--Swiften/EventLoop/SimpleEventLoop.h5
2 files changed, 8 insertions, 3 deletions
diff --git a/Swiften/EventLoop/SimpleEventLoop.cpp b/Swiften/EventLoop/SimpleEventLoop.cpp
index 8191747..7c46ed3 100644
--- a/Swiften/EventLoop/SimpleEventLoop.cpp
+++ b/Swiften/EventLoop/SimpleEventLoop.cpp
@@ -12,6 +12,12 @@ void nop() {}
SimpleEventLoop::SimpleEventLoop() : isRunning_(true) {
}
+SimpleEventLoop::~SimpleEventLoop() {
+ if (!events_.empty()) {
+ std::cerr << "Warning: Pending events in SimpleEventLoop at destruction time" << std::endl;
+ }
+}
+
void SimpleEventLoop::run() {
while (isRunning_) {
std::vector<Event> events;
diff --git a/Swiften/EventLoop/SimpleEventLoop.h b/Swiften/EventLoop/SimpleEventLoop.h
index 01afdb2..bd0a07f 100644
--- a/Swiften/EventLoop/SimpleEventLoop.h
+++ b/Swiften/EventLoop/SimpleEventLoop.h
@@ -1,5 +1,4 @@
-#ifndef SWIFTEN_SimpleEventLoop_H
-#define SWIFTEN_SimpleEventLoop_H
+#pragma once
#include <vector>
#include <boost/function.hpp>
@@ -12,6 +11,7 @@ namespace Swift {
class SimpleEventLoop : public EventLoop {
public:
SimpleEventLoop();
+ ~SimpleEventLoop();
void run();
void stop();
@@ -28,4 +28,3 @@ namespace Swift {
boost::condition_variable eventsAvailable_;
};
}
-#endif