Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
chore(dictionary_test): fix Windows linking error in test code
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem authored and sih4sing5hong5 committed Jan 3, 2022
1 parent e9b556d commit 47e7a5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rime/dict/dictionary.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct QueryResult;

class DictEntryIterator : public DictEntryFilterBinder {
public:
DictEntryIterator();
RIME_API DictEntryIterator();
virtual ~DictEntryIterator() = default;
DictEntryIterator(const DictEntryIterator& other) = default;
DictEntryIterator& operator= (const DictEntryIterator& other) = default;
Expand All @@ -38,7 +38,7 @@ class DictEntryIterator : public DictEntryFilterBinder {
RIME_API an<DictEntry> Peek();
RIME_API bool Next();
bool Skip(size_t num_entries);
bool exhausted() const;
RIME_API bool exhausted() const;
size_t entry_count() const { return entry_count_; }

protected:
Expand Down

0 comments on commit 47e7a5e

Please sign in to comment.