Skip to content

Commit 1277d9d

Browse files
Fix AEGIS build errors.
1 parent 5ac87b1 commit 1277d9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

json_pack_epilogue.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ void type(classdesc::json_unpack_t& targ, const classdesc::string& desc)
266266
struct access_json_unpack<cd::object>: public cd::NullDescriptor<cd::json_unpack_t> {};
267267

268268
template <class T, class B>
269-
struct access_json_pack<cd::Object<T,B>>
269+
struct access_json_pack<cd::Object<T,B> >
270270
{
271271
template <class U>
272272
void operator()(cd::json_pack_t& repo, const std::string& d, U& a)
@@ -276,7 +276,7 @@ void type(classdesc::json_unpack_t& targ, const classdesc::string& desc)
276276
};
277277

278278
template <class T, class B>
279-
struct access_json_unpack<cd::Object<T,B>>
279+
struct access_json_unpack<cd::Object<T,B> >
280280
{
281281
template <class U>
282282
void operator()(cd::json_unpack_t& repo, const std::string& d, U& a)

object.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ namespace classdesc
101101
{static const bool value=is_base_of<object,T>::value;};
102102

103103
template <> struct tn<object> {static string name() {return "object";}};
104-
template <class T, class B> struct tn<Object<T,B>>
104+
template <class T, class B> struct tn<Object<T,B> >
105105
{static std:: string name() {return "Object<"+typeName<T>()+">"+typeName<B>()+">";}};
106106

107107
}

0 commit comments

Comments
 (0)