mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-01 02:15:54 -04:00
this is a more "clean" conversion to 64 bit than the type-fixups branch, which does borrow some elements from it but has far less find and replace...it is about 98-99% done, notes to follow later
This commit is contained in:
@@ -138,6 +138,7 @@ bool BindableVarrayNumber::push_back(int value)
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#if not __x86_64__
|
||||
bool BindableVarrayNumber::push_back(long int value)
|
||||
{
|
||||
OCINumber buffer;
|
||||
@@ -153,9 +154,10 @@ bool BindableVarrayNumber::push_back(long int value)
|
||||
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
bool BindableVarrayNumber::push_back(int64 value)
|
||||
bool BindableVarrayNumber::push_back(int64_t value)
|
||||
{
|
||||
OCINumber buffer;
|
||||
|
||||
@@ -230,6 +232,7 @@ bool BindableVarrayNumber::push_back(bool IsNULL, int value)
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#if not __x86_64__
|
||||
bool BindableVarrayNumber::push_back(bool IsNULL, long int value)
|
||||
{
|
||||
OCINumber buffer;
|
||||
@@ -254,9 +257,11 @@ bool BindableVarrayNumber::push_back(bool IsNULL, long int value)
|
||||
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
bool BindableVarrayNumber::push_back(bool IsNULL, int64 value)
|
||||
bool BindableVarrayNumber::push_back(bool IsNULL, int64_t value)
|
||||
{
|
||||
OCINumber buffer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user