From: Warren Young Date: May 1 2008 10:43pm Subject: Re: What's up with uint64_t List-Archive: http://lists.mysql.com/plusplus/7623 Message-Id: <481A4776.2010202@etr-usa.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Rick Gutleber wrote: > > The compiler is choking on the few places in my code where I'm using > uint64_t. lib/sql_types.h was erroneously #including stdint.h within namespace mysqlpp. So, the typedef *is* available, you just have to call it mysqlpp::uint64_t. :( The fix is in svn now, or you can hand-patch your version: remove the current #include and put this up under the rest of the includes at the top of the file: #if !defined(MYSQLPP_NO_STDINT_H) # include #endif This fix will appear in 3.0.3.