Changed some headers that seemed to conflict on slightly older versions of msvc

This commit is contained in:
KimLS 2014-07-06 15:22:58 -07:00
parent eb62481766
commit 122d180f02
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 "types.h"
#include "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 "types.h"
class MySQLRequestRow : public std::iterator<std::input_iterator_tag, MYSQL_ROW>
{