Skip to content

Commit

Permalink
Add more missing include statements for Windows build
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Apr 1, 2019
1 parent ab009fa commit 81fbd87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/api/altorenderer.cpp
Expand Up @@ -15,6 +15,9 @@

#include <memory>
#include <sstream> // for std::stringstream
#ifdef _WIN32
# include <windows.h> // MultiByteToWideChar, ...
#endif
#include "baseapi.h"
#include "renderer.h"

Expand Down
3 changes: 3 additions & 0 deletions src/api/hocrrenderer.cpp
Expand Up @@ -20,6 +20,9 @@
#include <locale> // for std::locale::classic
#include <memory> // for std::unique_ptr
#include <sstream> // for std::stringstream
#ifdef _WIN32
# include <windows.h> // MultiByteToWideChar, ...
#endif
#include "baseapi.h" // for TessBaseAPI
#include "renderer.h"
#include "tesseractclass.h" // for Tesseract
Expand Down

0 comments on commit 81fbd87

Please sign in to comment.