mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-19 06:53:36 +08:00
fixed missing include for std::back_inserter.
with Visual Studio 2015 RTM: Error C2039: 'back_inserter': is not a member of 'std' Error C3861: 'back_inserter': identifier not found need "iterator" with Visual Studio 2015 (vc14). #include <iterator>
This commit is contained in:
parent
ebbfc3ae8d
commit
d751305804
@ -3,6 +3,7 @@
|
||||
#include <algorithm>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
#include <iterator>
|
||||
|
||||
#include "icuerrorcode.h"
|
||||
#include "unicode/uchar.h" // From libicu
|
||||
|
Loading…
Reference in New Issue
Block a user