From b372cfc36b5be1f73d3d79c399530cffd4ce444a Mon Sep 17 00:00:00 2001 From: John Hodge Date: Tue, 25 Aug 2015 12:21:41 +0800 Subject: Compiling once more --- src/types.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/types.cpp') diff --git a/src/types.cpp b/src/types.cpp index 9924ff0f..4761846d 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -41,6 +41,12 @@ Type_Function::Type_Function(const Type_Function& other): m_arg_types(other.m_arg_types) { } +SERIALISE_TYPE_A(Type_Function::, "Type_Function", { + s.item( is_unsafe ); + s.item( m_abi ); + s.item( m_rettype ); + s.item( m_arg_types ); + }) Ordering Type_Function::ord(const Type_Function& x) const { -- cgit v1.2.3