Revision: 15d48361b4f5
Author:   Zdenko Podobný <
zde...@gmail.com>
Date:     Thu Feb  5 16:27:18 2015 UTC
Log:      fix VS2010 build;
https://code.google.com/p/tesseract-ocr/source/detail?r=15d48361b4f5
Modified:
  /ccmain/resultiterator.cpp
  /ccmain/resultiterator.h
=======================================
--- /ccmain/resultiterator.cpp	Fri Jan 30 21:24:26 2015 UTC
+++ /ccmain/resultiterator.cpp	Thu Feb  5 16:27:18 2015 UTC
@@ -34,6 +34,7 @@
      : 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,
=======================================
--- /ccmain/resultiterator.h	Tue Jan 27 21:58:04 2015 UTC
+++ /ccmain/resultiterator.h	Thu Feb  5 16:27:18 2015 UTC
@@ -236,7 +236,7 @@
     * 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.