diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2009-03-07 23:57:25 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2009-03-07 23:57:25 +0800 |
commit | 6920abb4994589c358d8a7b0b058a63898cfe4c7 (patch) | |
tree | 40fa46a94cd05a1f29914eade9cac7c8df2f58c0 /lang | |
parent | 9fe99f21ee865dd412ec13859713f4f6ae2921db (diff) | |
download | freebsd-ports-gnome-6920abb4994589c358d8a7b0b058a63898cfe4c7.tar.gz freebsd-ports-gnome-6920abb4994589c358d8a7b0b058a63898cfe4c7.tar.zst freebsd-ports-gnome-6920abb4994589c358d8a7b0b058a63898cfe4c7.zip |
- Forgot to remove patch
Diffstat (limited to 'lang')
-rw-r--r-- | lang/mosh/files/patch-HashTableProceduures.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/mosh/files/patch-HashTableProceduures.cpp b/lang/mosh/files/patch-HashTableProceduures.cpp deleted file mode 100644 index 927e0d5386b7..000000000000 --- a/lang/mosh/files/patch-HashTableProceduures.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- HashTableProceduures.cpp.orig 2008-08-16 14:52:38.000000000 +0400 -+++ HashTableProceduures.cpp 2008-08-31 16:12:15.000000000 +0400 -@@ -32,6 +32,8 @@ - #include "HashTableProceduures.h" - #include "ProcedureMacro.h" - -+#include <stdint.h> -+ - using namespace scheme; - - extern scheme::VM* theVM; -@@ -81,7 +83,7 @@ - int scheme::symbolHash(Symbol* symbol) - { - // we can use pointer as hash, because symbol is interned. -- return reinterpret_cast<int>(symbol); -+ return reinterpret_cast<intptr_t>(symbol); - } - - |