Hopefully fix compile issue with some VS versions

This commit is contained in:
Michael Cook (mackal) 2014-07-04 13:57:09 -04:00 committed by Arthur Ice
parent 2c78a47a94
commit 2b204fa756
2 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@
#endif
#include <mysql.h>
#include <../common/types.h>
#include <../common/MySQLRequestRow.h>
#include "../common/types.h"
#include "../common/MySQLRequestRow.h"
#include <string>
#include <string.h>
#include <limits.h>

View File

@ -8,7 +8,7 @@
#include <mysql.h>
#include <iterator>
#include <../common/types.h>
#include "../common/types.h"
class MySQLRequestRow : public std::iterator<std::input_iterator_tag, MYSQL_ROW>
{