diff options
Diffstat (limited to 'lang/mozart/files/patch-platform-emulator-namer.cc')
-rw-r--r-- | lang/mozart/files/patch-platform-emulator-namer.cc | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/lang/mozart/files/patch-platform-emulator-namer.cc b/lang/mozart/files/patch-platform-emulator-namer.cc deleted file mode 100644 index 32441499644e..000000000000 --- a/lang/mozart/files/patch-platform-emulator-namer.cc +++ /dev/null @@ -1,42 +0,0 @@ ---- ./platform/emulator/namer.cc.orig Fri Aug 2 16:20:44 2002 -+++ ./platform/emulator/namer.cc Sat Sep 3 18:46:09 2005 -@@ -8,8 +8,8 @@ - * Organization or Person (Year(s)) - * - * Last change: -- * $Date: 2002/08/02 20:20:44 $ by $Author: popow $ -- * $Revision: 1.14 $ -+ * $Date: 2005/01/30 10:39:10 $ by $Author: glynn $ -+ * $Revision: 1.14.12.1 $ - * - * This file is part of Mozart, an implementation - * of Oz 3: -@@ -30,10 +30,11 @@ - //----------------------------------------------------------------------------- - // naming variables - -+template class Namer<OZ_Term, const char *>; -+ - typedef Namer<OZ_Term, const char *> VarNamer; --template VarNamer; - --VarNamer * VarNamer::_head; -+template <> VarNamer * VarNamer::_head = NULL; - - VarNamer varNamer; - -@@ -94,10 +95,11 @@ - //----------------------------------------------------------------------------- - // naming propagators - --typedef Namer<Propagator *, OZ_Term> PropNamer; --template PropNamer; -+template class Namer<Propagator *, OZ_Term>; -+ -+typedef class Namer<Propagator *, OZ_Term> PropNamer; - --PropNamer * PropNamer::_head; -+template <> PropNamer * PropNamer::_head = NULL; - - PropNamer propNamer; - |