summaryrefslogtreecommitdiff
path: root/src/types.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2015-08-25 12:21:41 +0800
committerJohn Hodge <tpg@mutabah.net>2015-08-25 12:21:41 +0800
commitb372cfc36b5be1f73d3d79c399530cffd4ce444a (patch)
tree5d65ba11b0c2d895dbe4197f1b53f2a81b8e046d /src/types.cpp
parent7156d7d274184a085452a58ee3398d06024112b5 (diff)
downloadmrust-b372cfc36b5be1f73d3d79c399530cffd4ce444a.tar.gz
Compiling once more
Diffstat (limited to 'src/types.cpp')
-rw-r--r--src/types.cpp6
1 files changed, 6 insertions, 0 deletions
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
{