In structures, put minSuffixComponents before maxSuffixComponents
diff --git a/ndn-cpp/Interest.hpp b/ndn-cpp/Interest.hpp
index a776912..01681be 100644
--- a/ndn-cpp/Interest.hpp
+++ b/ndn-cpp/Interest.hpp
@@ -59,9 +59,8 @@
 private:
   
   Name name_;
-	int maxSuffixComponents_;
 	int minSuffixComponents_;
-	
+	int maxSuffixComponents_;	
 	std::vector<unsigned char> publisherPublicKeyDigest_;
 	// TODO: implement exclude
 	int childSelector_;