Skip to content

Commit

Permalink
Add missing include file for std::max, std::min
Browse files Browse the repository at this point in the history
This fixes a build issue with VS 2019 Version 16.11.9
and platform toolset v141.

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Jan 13, 2022
1 parent d9f232a commit ad55cec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ccmain/thresholder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
#include <allheaders.h>
#include <tesseract/baseapi.h> // for api->GetIntVariable()

#include <cstdint> // for uint32_t
#include <algorithm> // for std::max, std::min
#include <cstdint> // for uint32_t
#include <cstring>
#include <tuple>

Expand Down

0 comments on commit ad55cec

Please sign in to comment.