Fix long lines.

This commit is contained in:
Christopher Kohlhoff 2014-10-05 10:19:30 +11:00
parent 652a788b11
commit 4159db3ff6
2 changed files with 4 additions and 2 deletions

View File

@ -35,7 +35,8 @@ public:
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.

View File

@ -254,7 +254,8 @@ class executor::impl<system_executor, Allocator>
: 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> > >();
}