mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Forgot to remove patch
This commit is contained in:
parent
b654a69f9b
commit
dc59a064d9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=229637
1 changed files with 0 additions and 20 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue