Skip to content

Commit d17c70c

Browse files
committed
Added whitespaces at inheritance.
1 parent 88ab7b6 commit d17c70c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/msgpack/adaptor/boost/msgpack_variant.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ struct convert<msgpack::type::basic_variant<STR, BIN, EXT> > {
351351
namespace detail {
352352

353353
template <typename Stream>
354-
struct pack_imp:boost::static_visitor<void> {
354+
struct pack_imp : boost::static_visitor<void> {
355355
template <typename T>
356356
void operator()(T const& value) const {
357357
pack<T>()(o_, value);
@@ -373,7 +373,7 @@ struct pack<msgpack::type::basic_variant<STR, BIN, EXT> > {
373373

374374
namespace detail {
375375

376-
struct object_imp:boost::static_visitor<void> {
376+
struct object_imp : boost::static_visitor<void> {
377377
void operator()(msgpack::type::nil const& v) const {
378378
object<msgpack::type::nil>()(o_, v);
379379
}
@@ -408,7 +408,7 @@ struct object<msgpack::type::basic_variant<STR, BIN, EXT> > {
408408

409409
namespace detail {
410410

411-
struct object_with_zone_imp:boost::static_visitor<void> {
411+
struct object_with_zone_imp : boost::static_visitor<void> {
412412
template <typename T>
413413
void operator()(T const& v) const {
414414
object_with_zone<T>()(o_, v);

0 commit comments

Comments
 (0)