Author: wyoung
Date: Fri Aug 10 19:23:10 2007
New Revision: 1742

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1742&view=rev
Log:
Comment and code style tweaks

Modified:
    trunk/lib/row.cpp

Modified: trunk/lib/row.cpp
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/row.cpp?rev=1742&r1=1741&r2=1742&view=diff
==============================================================================
--- trunk/lib/row.cpp (original)
+++ trunk/lib/row.cpp Fri Aug 10 19:23:10 2007
@@ -1,10 +1,10 @@
 /***********************************************************************
  row.cpp - Implements the Row class.
 
- Copyright (c) 1998 by Kevin Atkinson, (c) 1999, 2000 and 2001 by
- MySQL AB, and (c) 2004-2007 by Educational Technology Resources, Inc.
- Others may also hold copyrights on code in this file.  See the CREDITS
- file in the top directory of the distribution for details.
+ Copyright (c) 1998 by Kevin Atkinson, (c) 1999-2001 by MySQL AB, and
+ (c) 2004-2007 by Educational Technology Resources, Inc.  Others may
+ also hold copyrights on code in this file.  See the CREDITS file in
+ the top directory of the distribution for details.
 
  This file is part of MySQL++.
 
@@ -78,10 +78,12 @@
                                is_nulls_[i]);
        }
        else {
-               if (throw_exceptions())
+               if (throw_exceptions()) {
                        throw std::out_of_range("Row not initialized");
-               else
+               }
+               else {
                        return ColData();
+               }
        }
 }
 


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to