aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/details/number.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-09-27 09:27:46 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-09-27 09:27:46 +0200
commit3eb25c0b2789aee57e006a92a25269b564789713 (patch)
treedca4ab9865ef7d958454aa68d5957f8840695e65 /odb/oracle/details/number.hxx
parentf151784adccbce91b0edb08e48923f84e76fcf3f (diff)
Use char* instead of unsigned char* as binary data buffer type
Diffstat (limited to 'odb/oracle/details/number.hxx')
-rw-r--r--odb/oracle/details/number.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/odb/oracle/details/number.hxx b/odb/oracle/details/number.hxx
index c950dd4..345cbe0 100644
--- a/odb/oracle/details/number.hxx
+++ b/odb/oracle/details/number.hxx
@@ -16,16 +16,16 @@ namespace odb
namespace details
{
LIBODB_ORACLE_EXPORT long long
- number_to_int64 (const unsigned char* buffer);
+ number_to_int64 (const char* buffer);
LIBODB_ORACLE_EXPORT void
- int64_to_number (unsigned char* buffer, long long value);
+ int64_to_number (char* buffer, long long value);
LIBODB_ORACLE_EXPORT unsigned long long
- number_to_uint64 (const unsigned char* buffer);
+ number_to_uint64 (const char* buffer);
LIBODB_ORACLE_EXPORT void
- uint64_to_number (unsigned char* buffer, unsigned long long value);
+ uint64_to_number (char* buffer, unsigned long long value);
}
}
}