Skip to content

Commit

Permalink
Fix for partialTrans and noUndefinedDots undeclared identifiers on wi…
Browse files Browse the repository at this point in the history
…ndows builds

Commits 6b0ab9c and
56bb717 added noUndefinedDots and
partialTrans translation modes on liblouis/liblouis.h.in but did not
update windows/include/liblouis.h.
It currently causes the windows build to fail with compile error C2065
(undeclared identifiers for partialTrans and noUndefinedDots). This
commit fixes the issue.
  • Loading branch information
vsmontalvao committed Feb 27, 2017
1 parent e6945a2 commit c38d3e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion windows/include/liblouis.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ typedef enum {
pass1Only = 16,
compbrlLeftCursor = 32,
otherTrans = 64,
ucBrl = 128
ucBrl = 128,
noUndefinedDots = 256,
partialTrans = 512
} translationModes;

char *EXPORT_CALL lou_version();
Expand Down

0 comments on commit c38d3e7

Please sign in to comment.