Author: wyoung
Date: Mon Mar 19 20:51:37 2007
New Revision: 1458

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1458&view=rev
Log:
Added a Doxygen comment

Modified:
    trunk/lib/query.h

Modified: trunk/lib/query.h
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/query.h?rev=1458&r1=1457&r2=1458&view=diff
==============================================================================
--- trunk/lib/query.h (original)
+++ trunk/lib/query.h Mon Mar 19 20:51:37 2007
@@ -56,10 +56,13 @@
 #  endif
 #endif
 
-// This macro returns '*this', either directly or upcast to Query's
-// base class to work around an error in the overloaded operator
-// lookup logic in VC++ 2003.  For an explanation of the problem, see:
-// 
http://groups.google.com/group/microsoft.public.vc.stl/browse_thread/thread/9a68d84644e64f15
+/// \def MYSQLPP_QUERY_THISPTR
+/// \brief Helper macro used inside MySQL++ to work around a VC++ 2003 bug
+///
+/// This macro returns '*this', either directly or upcast to Query's
+/// base class to work around an error in the overloaded operator
+/// lookup logic in VC++ 2003.  For an explanation of the problem, see:
+/// 
http://groups.google.com/group/microsoft.public.vc.stl/browse_thread/thread/9a68d84644e64f15
 #if defined(_MSC_VER) && (_MSC_VER < 1400)
 #      define MYSQLPP_QUERY_THISPTR dynamic_cast<std::ostream&>(*this)
 #else


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

Reply via email to