Author: wyoung
Date: Thu Mar 19 01:39:24 2015
New Revision: 2774

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=2774&view=rev
Log:
Put template AutoFlag into namespace mysqlpp, where it always should
have been.  This is mostly an internal utility template for class Query,
so this mainly just has the effect of fixing the refman's class list.
It was showing up as a global-level symbol.

Modified:
    trunk/lib/autoflag.h

Modified: trunk/lib/autoflag.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/autoflag.h?rev=2774&r1=2773&r2=2774&view=diff
==============================================================================
--- trunk/lib/autoflag.h        (original)
+++ trunk/lib/autoflag.h        Thu Mar 19 01:39:24 2015
@@ -3,7 +3,7 @@
 /// scope, and resetting it when exiting that scope.
 
 /***********************************************************************
- Copyright (c) 2007 by Educational Technology Resources, Inc.
+ Copyright © 2007 by Educational Technology Resources, Inc.
  Others may also hold copyrights on code in this file.  See the
  CREDITS.txt file in the top directory of the distribution for details.
 
@@ -27,6 +27,8 @@
 
 #if !defined(MYSQLPP_AUTOFLAG_H)
 #define MYSQLPP_AUTOFLAG_H
+
+namespace mysqlpp {
 
 /// \brief A template for setting a flag on a variable as long as the
 /// object that set it is in scope.  Flag resets when object goes
@@ -53,5 +55,7 @@
        T& referent_;
 };
 
+} // end namespace mysqlpp
+
 #endif // !defined(MYSQLPP_AUTOFLAG_H)
 


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

Reply via email to