fixed link error

This commit is contained in:
Taku Kudo 2021-06-17 01:56:17 +09:00
parent fab966ad21
commit 5c194ecc34
3 changed files with 3 additions and 5 deletions

View File

@ -1 +1 @@
0.1.95
0.1.96

View File

@ -1 +1 @@
0.1.95
0.1.96

View File

@ -31,8 +31,6 @@
#include "trainer_factory.h"
#include "util.h"
ABSL_DECLARE_FLAG(int, minloglevel);
namespace sentencepiece {
namespace {
static constexpr char kDefaultNormalizerName[] = "nmt_nfkc";
@ -151,7 +149,7 @@ util::Status SentencePieceTrainer::MergeSpecsFromArgs(
} else if (key == "minloglevel") {
int v = 0;
CHECK_OR_RETURN(absl::SimpleAtoi(value, &v));
absl::SetFlag(&FLAGS_minloglevel, v);
logging::SetMinLogLevel(v);
continue;
}