Code style: Put function return type on a line by itself.
diff --git a/ndn-cpp/util/changed-event.hpp b/ndn-cpp/util/changed-event.hpp
index 3bac8b6..ce4b20f 100644
--- a/ndn-cpp/util/changed-event.hpp
+++ b/ndn-cpp/util/changed-event.hpp
@@ -23,7 +23,8 @@
* Add onChanged to the listener list. This does not check if a duplicate is already in the list.
* @param onChanged The OnChanged function object.
*/
- void add(OnChanged onChanged)
+ void
+ add(OnChanged onChanged)
{
listeners_.push_back(onChanged);
}
@@ -31,7 +32,8 @@
/**
* Call all the listeners.
*/
- void fire();
+ void
+ fire();
#if 0
private: