fix VS2010 build;

This commit is contained in:
Zdenko Podobný 2015-02-05 17:27:18 +01:00
parent 9bca55c73b
commit 15d48361b4
2 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@ ResultIterator::ResultIterator(const LTRResultIterator &resit)
: LTRResultIterator(resit) {
in_minor_direction_ = false;
at_beginning_of_minor_run_ = false;
preserve_interword_spaces_ = false;
BoolParam *p = ParamUtils::FindParam<BoolParam>(
"preserve_interword_spaces", GlobalParams()->bool_params,

View File

@ -236,7 +236,7 @@ class TESS_API ResultIterator : public LTRResultIterator {
* Should detected inter-word spaces be preserved, or "compressed" to a single
* space character (default behavior).
*/
bool preserve_interword_spaces_ = false;
bool preserve_interword_spaces_;
};
} // namespace tesseract.