mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
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:
parent
aacaaf660b
commit
d39b7a8d68
2 changed files with 5 additions and 0 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -33,6 +33,7 @@ protected:
|
|||
|
||||
public:
|
||||
NGramParser(const int32_t *theNgramList, const uint8_t *theCharMap);
|
||||
virtual ~NGramParser();
|
||||
|
||||
private:
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue