We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 832926f commit 2cc46faCopy full SHA for 2cc46fa
ccutil/Makefile.am
@@ -27,7 +27,7 @@ noinst_HEADERS = \
27
noinst_LTLIBRARIES = libtesseract_ccutil.la
28
29
libtesseract_ccutil_la_SOURCES = \
30
- ambigs.cpp basedir.cpp bits16.cpp bitvector.cpp \
+ ambigs.cpp basedir.cpp bitvector.cpp \
31
ccutil.cpp clst.cpp \
32
elst2.cpp elst.cpp errcode.cpp \
33
globaloc.cpp indexmapbidi.cpp \
ccutil/bits16.cpp
ccutil/bits16.h
@@ -31,8 +31,9 @@ class DLLSYM BITS16
val = 0;
} // constructor
34
- BITS16( // constructor
35
- uint16_t init); // initial val
+ BITS16(uint16_t init) {
+ val = init;
36
+ }
37
38
void turn_on_bit( // flip specified bit
39
uint8_t bit_num) { // bit to flip 0..7
0 commit comments