fix build on mac

* typedef unsigned int uint
  uint isn't a standard type - unsigned int is.

* add missing #include <string>
  clang on mac complains about this
This commit is contained in:
Santa Zhang 2015-05-23 12:39:19 -04:00
parent a69569dfb7
commit c8b768e549
2 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#ifndef __SQLLIB_H__
#define __SQLLIB_H__
typedef unsigned int uint;
#include "SelectStatement.h"
#include "ImportStatement.h"

View File

@ -2,6 +2,7 @@
#include "bison_parser.h"
#include "flex_lexer.h"
#include <stdio.h>
#include <string>
namespace hsql {