code style: In Exclude, put return types on previous line.
diff --git a/include/ndn-cpp/interest.hpp b/include/ndn-cpp/interest.hpp
index 8788fd8..846ecf2 100644
--- a/include/ndn-cpp/interest.hpp
+++ b/include/ndn-cpp/interest.hpp
@@ -27,7 +27,8 @@
/**
* Create a new Exclude with no entries.
*/
- Exclude() {
+ Exclude()
+ {
}
/**
@@ -67,9 +68,11 @@
void
get(struct ndn_ExcludeEntry& excludeEntryStruct) const;
- ndn_ExcludeType getType() const { return type_; }
+ ndn_ExcludeType
+ getType() const { return type_; }
- const Name::Component& getComponent() const { return component_; }
+ const Name::Component&
+ getComponent() const { return component_; }
private:
ndn_ExcludeType type_;