ICU-11568 Add virtual destructor for class NGramParser.

BUG=
R=markus.icu@gmail.com

Review URL: https://codereview.appspot.com/214060043

X-SVN-Rev: 37209
This commit is contained in:
Fredrik Roubert 2015-03-11 16:59:36 +00:00
parent aacaaf660b
commit d39b7a8d68
2 changed files with 5 additions and 0 deletions

View file

@ -28,6 +28,10 @@ NGramParser::NGramParser(const int32_t *theNgramList, const uint8_t *theCharMap)
ngramCount = hitCount = 0;
}
NGramParser::~NGramParser()
{
}
/*
* Binary search for value in table, which must have exactly 64 entries.
*/

View file

@ -33,6 +33,7 @@ protected:
public:
NGramParser(const int32_t *theNgramList, const uint8_t *theCharMap);
virtual ~NGramParser();
private:
/*