summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-03-15 14:42:31 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-03-15 14:42:31 (GMT)
commit68d037d25824bcddfbb1316a221cd7a15ed109c2 (patch)
treec3b0d6c65c4808fd1782871febb8339488e96400
parentc21680c195929a943270b436e4a5329edb3d6cea (diff)
downloadswift-contrib-68d037d25824bcddfbb1316a221cd7a15ed109c2.zip
swift-contrib-68d037d25824bcddfbb1316a221cd7a15ed109c2.tar.bz2
Fix compilation error
-rw-r--r--SwifTools/Notifier/NullNotifier.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/SwifTools/Notifier/NullNotifier.h b/SwifTools/Notifier/NullNotifier.h
index 576dd85..7d3cc3d 100644
--- a/SwifTools/Notifier/NullNotifier.h
+++ b/SwifTools/Notifier/NullNotifier.h
@@ -1,18 +1,19 @@
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#include <SwifTools/Notifier/Notifier.h>
namespace Swift {
class NullNotifier : public Notifier {
public:
virtual void showMessage(Type, const std::string&, const std::string&, const boost::filesystem::path&, boost::function<void()>) {
}
virtual void purgeCallbacks() {
+ }
};
}