diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-13 15:40:47 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-13 15:40:47 +0200 |
commit | db26f79d8c2a367d6ed3b6ef91de29213f3430c7 (patch) | |
tree | 7ad996c5026171e661bf7db89f252b9206b4e324 | |
parent | e607b4dfb03f17e073725013df12a11547fc6a54 (diff) |
Make process notification callback static
-rw-r--r-- | odb/pgsql/connection.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/odb/pgsql/connection.cxx b/odb/pgsql/connection.cxx index 41fa7f0..fb1ea26 100644 --- a/odb/pgsql/connection.cxx +++ b/odb/pgsql/connection.cxx @@ -18,12 +18,9 @@ namespace odb { namespace pgsql { - namespace + static void + nop_process_notice (void*, const char*) { - void - nop_process_notice (void*, const char*) - { - } } connection:: |