Merge pull request #118 from ortho/compile-mac

Fixing compiler error for MAC OS 10.10.3
This commit is contained in:
Matthew Hill
2015-05-15 06:01:24 -04:00
2 changed files with 2 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ using namespace alpr;
const int LEFT_ARROW_KEY = 2;
const int RIGHT_ARROW_KEY = 3;
const int SPACE_KEY = 32;
const string SPACE = " ";
const int ENTER_KEY = 13;
const int ESCAPE_KEY = 27;

View File

@@ -1,5 +1,5 @@
#include "utf8.h"
#include <string>
std::string utf8chr(int cp)
{