aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-08-04 13:23:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-08-04 13:23:54 +0200
commit84b6d8488a2415c1c6c91b2234993497ab8f792b (patch)
tree9863ad036ffed240fbc337282445aaa5f7da1a55
parentab1487672afb5180bd17c9d26b35196bd06f6cda (diff)
Style changes
-rw-r--r--pgsql/types/traits.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/pgsql/types/traits.hxx b/pgsql/types/traits.hxx
index 9852727..ae3bd9e 100644
--- a/pgsql/types/traits.hxx
+++ b/pgsql/types/traits.hxx
@@ -140,7 +140,7 @@ namespace odb
static void
set_value (unsigned char v[16],
- unsigned char const* i,
+ const unsigned char* i,
bool is_null)
{
if (!is_null)
@@ -150,7 +150,7 @@ namespace odb
}
static void
- set_image (unsigned char* i, bool& is_null, unsigned char const v[16])
+ set_image (unsigned char* i, bool& is_null, const unsigned char v[16])
{
is_null = false;
std::memcpy (i, v, 16);