mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-04 18:29:06 +08:00
Fix syntax errors introduced by last commit (regression)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
cf6c79d842
commit
787bde5630
@ -258,6 +258,7 @@ Network* Network::CreateFromFile(TFile* fp) {
|
||||
network = new FullyConnected(stub.name_, stub.ni_, stub.no_, stub.type_);
|
||||
break;
|
||||
default:
|
||||
;
|
||||
}
|
||||
if (network) {
|
||||
network->training_ = stub.training_;
|
||||
@ -266,7 +267,7 @@ Network* Network::CreateFromFile(TFile* fp) {
|
||||
network->num_weights_ = stub.num_weights_;
|
||||
if (!network->DeSerialize(fp)) {
|
||||
delete network;
|
||||
network = nullptr;
|
||||
network = nullptr;
|
||||
}
|
||||
}
|
||||
return network;
|
||||
|
Loading…
Reference in New Issue
Block a user