Merge pull request #1747 from stweil/fix

Fix syntax errors introduced by last commit (regression)
This commit is contained in:
zdenop 2018-07-05 07:54:07 +02:00 committed by GitHub
commit d27f5b58f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;