Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
PageIterator: Remove useless const
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Mar 31, 2019
1 parent 813b780 commit f2bd98e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ccmain/pageiterator.h
Expand Up @@ -21,8 +21,8 @@
#ifndef TESSERACT_CCMAIN_PAGEITERATOR_H_
#define TESSERACT_CCMAIN_PAGEITERATOR_H_

#include "publictypes.h"
#include "platform.h"
#include "publictypes.h"

struct BlamerBundle;
class C_BLOB_IT;
Expand Down Expand Up @@ -205,7 +205,7 @@ class TESS_API PageIterator {
*/
bool BoundingBox(PageIteratorLevel level,
int* left, int* top, int* right, int* bottom) const;
bool BoundingBox(PageIteratorLevel level, const int padding,
bool BoundingBox(PageIteratorLevel level, int padding,
int* left, int* top, int* right, int* bottom) const;
/**
* Returns the bounding rectangle of the object in a coordinate system of the
Expand Down

0 comments on commit f2bd98e

Please sign in to comment.