We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f61393 commit 122a3f2Copy full SHA for 122a3f2
src/hmm/posterior.cc
@@ -146,7 +146,7 @@ bool PosteriorHolder::Read(std::istream &is) {
146
try {
147
ReadPosterior(is, is_binary, &t_);
148
return true;
149
- } catch (std::exception &e) {
+ } catch (const std::exception &e) {
150
KALDI_WARN << "Exception caught reading table of posteriors. " << e.what();
151
t_.clear();
152
return false;
@@ -207,7 +207,7 @@ bool GaussPostHolder::Read(std::istream &is) {
207
}
208
209
210
211
212
213
0 commit comments