Add missing noexcept.
diff --git a/asio/include/asio/ip/network_v4.hpp b/asio/include/asio/ip/network_v4.hpp
index e4efd8f..a615dbb 100644
--- a/asio/include/asio/ip/network_v4.hpp
+++ b/asio/include/asio/ip/network_v4.hpp
@@ -131,7 +131,8 @@
   }
 
   /// Test if a network is a real subnet of another network.
-  ASIO_DECL bool is_subnet_of(const network_v4& other) const;
+  ASIO_DECL bool is_subnet_of(
+      const network_v4& other) const ASIO_NOEXCEPT;
   
   /// Get the network as an address in dotted decimal format.
   ASIO_DECL std::string to_string() const;