mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-04 09:49:16 +08:00
Add missing namespace prefix (fix build for merge_unicharsets)
Signed-off-by: Stefan Weil <sw@weil.de>
This commit is contained in:
parent
b2b2d02167
commit
418064f639
@ -2,7 +2,6 @@
|
||||
// File: merge_unicharsets.cpp
|
||||
// Description: Simple tool to merge two or more unicharsets.
|
||||
// Author: Ray Smith
|
||||
// Created: Wed Sep 30 16:09:01 PDT 2015
|
||||
//
|
||||
// (C) Copyright 2015, Google Inc.
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@ -34,7 +33,7 @@ int main(int argc, char** argv) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
UNICHARSET input_unicharset, result_unicharset;
|
||||
tesseract::UNICHARSET input_unicharset, result_unicharset;
|
||||
for (int arg = 1; arg < argc - 1; ++arg) {
|
||||
// Load the input unicharset
|
||||
if (input_unicharset.load_from_file(argv[arg])) {
|
||||
|
Loading…
Reference in New Issue
Block a user