# HG changeset patch # User Stefan Vogel # Date 1360080013 -3600 # Node ID f2511581c8a16f91d8c65179d3dc14449228dfa2 # Parent 9545fe46a30c262baff1d7a289c3b60ac44ab932 class: ExternalFunctionCallback class definition : remove unused class var Verbose #include for definition of malloc() diff -r 9545fe46a30c -r f2511581c8a1 ExternalFunctionCallback.st --- a/ExternalFunctionCallback.st Tue Feb 05 16:31:46 2013 +0100 +++ b/ExternalFunctionCallback.st Tue Feb 05 17:00:13 2013 +0100 @@ -13,14 +13,14 @@ ExternalFunction subclass:#ExternalFunctionCallback instanceVariableNames:'returnType argumentTypes flags action' - classVariableNames:'CallBackRegistry Verbose' + classVariableNames:'CallBackRegistry' poolDictionaries:'' category:'System-Support' ! !ExternalFunctionCallback primitiveDefinitions! %{ - +#include #include #ifdef HAVE_FFI @@ -846,9 +846,10 @@ !ExternalFunctionCallback class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunctionCallback.st,v 1.21 2013-01-16 12:20:15 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunctionCallback.st,v 1.22 2013-02-05 16:00:13 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunctionCallback.st,v 1.21 2013-01-16 12:20:15 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunctionCallback.st,v 1.22 2013-02-05 16:00:13 stefan Exp $' ! ! +