Fix long lines.
diff --git a/asio/include/asio/executor.hpp b/asio/include/asio/executor.hpp
index 2e89fd4..e1286b2 100644
--- a/asio/include/asio/executor.hpp
+++ b/asio/include/asio/executor.hpp
@@ -35,7 +35,8 @@
   ASIO_DECL bad_executor() ASIO_NOEXCEPT;
 
   /// Obtain message associated with exception.
-  ASIO_DECL virtual const char* what() const ASIO_NOEXCEPT_OR_NOTHROW;
+  ASIO_DECL virtual const char* what() const
+    ASIO_NOEXCEPT_OR_NOTHROW;
 };
 
 /// Polymorphic wrapper for executors.
diff --git a/asio/include/asio/impl/executor.hpp b/asio/include/asio/impl/executor.hpp
index a5bf3b0..02616cb 100644
--- a/asio/include/asio/impl/executor.hpp
+++ b/asio/include/asio/impl/executor.hpp
@@ -254,7 +254,8 @@
   : public executor::impl_base
 {
 public:
-  static impl_base* create(const system_executor&, const Allocator& = Allocator())
+  static impl_base* create(const system_executor&,
+      const Allocator& = Allocator())
   {
     return &detail::global<impl<system_executor, std::allocator<void> > >();
   }