Skip to content

Commit 24bf8c3

Browse files
committed
Add include statements (needed for following commit)
Signed-off-by: Stefan Weil <[email protected]>
1 parent cfa787d commit 24bf8c3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/ccmain/thresholder.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
#include "thresholder.h"
2323

24+
#include <cstdint> // for uint32_t
2425
#include <cstring>
2526

2627
#include "otsuthr.h"

src/ccstruct/rect.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
/**********************************************************************
22
* File: rect.cpp (Formerly box.c)
33
* Description: Bounding box class definition.
4-
* Author: Phil Cheatle
5-
* Created: Wed Oct 16 15:18:45 BST 1991
4+
* Author: Phil Cheatle
65
*
76
* (C) Copyright 1991, Hewlett-Packard Ltd.
87
** Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,7 +16,8 @@
1716
*
1817
**********************************************************************/
1918

20-
#include "rect.h"
19+
#include "rect.h"
20+
#include "strngs.h" // for STRING
2121

2222
// Include automatically generated configuration file if running autoconf.
2323
#ifdef HAVE_CONFIG_H

0 commit comments

Comments
 (0)