Wrap overlength line

This commit is contained in:
Nathan Hourt 2019-05-01 12:47:49 -05:00 committed by Nathan Hourt
parent 9a52c29023
commit 3a15577617
No known key found for this signature in database
GPG key ID: B4344309A110851E

View file

@ -100,7 +100,8 @@ namespace graphene { namespace db {
#define MAP_OBJECT_ID_TO_TYPE(OBJECT) \
namespace graphene { namespace db { \
template<> \
struct object_downcast<graphene::db::object_id<OBJECT::space_id, OBJECT::type_id>> { using type = OBJECT; }; \
struct object_downcast<graphene::db::object_id<OBJECT::space_id, \
OBJECT::type_id>> { using type = OBJECT; }; \
} }
template<typename ObjectID>
using object_downcast_t = typename object_downcast<ObjectID>::type;