From 139d9cad5830521e7dc0a60d8e6334d27533036c Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Mon, 31 Oct 2011 11:20:07 +0200 Subject: Rename local variable to improve readability --- odb/relational/oracle/header.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/odb/relational/oracle/header.cxx b/odb/relational/oracle/header.cxx index 587d470..b6dba45 100644 --- a/odb/relational/oracle/header.cxx +++ b/odb/relational/oracle/header.cxx @@ -25,9 +25,9 @@ namespace relational { if (!(composite (c) || abstract (c))) { - bool f (options.generate_query ()); + bool gc (options.generate_query ()); - if (f) + if (gc) os << "oracle::change_callback change_callback_;" << endl; @@ -35,7 +35,7 @@ namespace relational << "change_callback ()" << "{"; - if (f) + if (gc) os << "return &change_callback_;"; else os << "return 0;"; -- cgit v1.1