Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Li authored and Samuel Li committed Apr 27, 2024
1 parent 47519ac commit 14075a0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion include/SPECK3D_INT.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class SPECK3D_INT : public SPECK_INT<T> {
virtual void m_process_S(size_t idx1, size_t idx2, size_t& counter, bool) = 0;
virtual void m_process_P(size_t i, size_t m, size_t& c, bool) = 0; // Called by `m_code_S()`.
virtual void m_process_P_lite(size_t idx) = 0; // Called by `m_sorting_pass()` directly.
virtual void m_additional_initialization() = 0;
virtual void m_additional_initialization() {}; // empty by default

void m_code_S(size_t idx1, size_t idx2);
auto m_partition_S_XYZ(Set3D, uint16_t) const -> std::tuple<std::array<Set3D, 8>, uint16_t>;
Expand Down
1 change: 0 additions & 1 deletion include/SPECK3D_INT_DEC.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class SPECK3D_INT_DEC final : public SPECK3D_INT<T> {
void m_process_S(size_t idx1, size_t idx2, size_t& counter, bool read) final;
void m_process_P(size_t idx, size_t no_use, size_t& counter, bool read) final;
void m_process_P_lite(size_t idx) final;
void m_additional_initialization() final{}; // empty function
};

}; // namespace sperr
Expand Down

0 comments on commit 14075a0

Please sign in to comment.