Skip to content
Snippets Groups Projects
Commit f925b1e3 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Fix offdevice TRT build

Change-Id: Idc2f3897e592433c13361bd8af94530d81621764
parent 4d02aa4e
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@
#ifndef LATINIME_UNIGRAM_PROPERTY_H
#define LATINIME_UNIGRAM_PROPERTY_H
#include <cstring>
#include <vector>
#include "defines.h"
......@@ -31,8 +32,7 @@ class UnigramProperty {
UnigramProperty()
: mCodePoints(), mCodePointCount(0), mIsNotAWord(false), mIsBlacklisted(false),
mHasBigrams(false), mHasShortcuts(false), mProbability(NOT_A_PROBABILITY),
mTimestamp(0), mLevel(0), mCount(0), mShortcutTargets(),
mShortcutProbabilities() {}
mTimestamp(0), mLevel(0), mCount(0), mShortcutTargets(), mShortcutProbabilities() {}
UnigramProperty(const UnigramProperty &unigramProperty)
: mCodePoints(), mCodePointCount(unigramProperty.mCodePointCount),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment