Skip to content

Commit

Permalink
Fix prototype for API function TessBaseGetBlockTextOrientations
Browse files Browse the repository at this point in the history
The declaration did not match the implementation (BOOL / bool).

Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Jul 5, 2018
1 parent 790b410 commit ffb5019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/capi.h
Expand Up @@ -326,7 +326,7 @@ TESS_API TessOcrEngineMode

TESS_API void TESS_CALL TessBaseAPIInitTruthCallback(TessBaseAPI* handle, TessTruthCallback* cb);

TESS_API void TESS_CALL TessBaseGetBlockTextOrientations(TessBaseAPI* handle, int** block_orientation, BOOL** vertical_writing);
TESS_API void TESS_CALL TessBaseGetBlockTextOrientations(TessBaseAPI* handle, int** block_orientation, bool** vertical_writing);

#endif

Expand Down

0 comments on commit ffb5019

Please sign in to comment.