Skip to content

Commit

Permalink
Removed m_terms (unused) (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
amallia authored Jan 8, 2019
1 parent f6800cd commit c421f3d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions include/forward_index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class forward_index : public std::vector<std::vector<std::uint8_t>> {
: std::vector<entry_type>(document_count),
m_term_count(term_count),
m_term_counts(document_count),
m_terms(term_count),
m_compressed(compressed) {}

const std::size_t &term_count() const { return m_term_count; }
Expand Down Expand Up @@ -146,7 +145,6 @@ class forward_index : public std::vector<std::vector<std::uint8_t>> {
private:
std::size_t m_term_count;
std::vector<std::size_t> m_term_counts;
std::size_t m_terms;
bool m_compressed;
};

Expand Down

0 comments on commit c421f3d

Please sign in to comment.