From 9681c508fa9614da936314b9913a5d6cb0342c62 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Wed, 28 Sep 2011 09:56:40 +0200 Subject: Correct casting error in id_big_int default_value_traits specialization --- odb/oracle/traits.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odb/oracle/traits.hxx b/odb/oracle/traits.hxx index 6b42da7..d33f282 100644 --- a/odb/oracle/traits.hxx +++ b/odb/oracle/traits.hxx @@ -427,7 +427,7 @@ namespace odb set_value (T v, char* b, bool is_null) { if (!is_null) - v = details::number_to_uint64 (static_cast (b)); + v = static_cast (details::number_to_uint64 (b)); else v = 0; } -- cgit v1.1