From 610293871780926ab73ed05ab72f2c51a0109bad Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Sat, 5 Dec 2015 16:53:47 -0800 Subject: [PATCH] fix(library/blast/hypothesis): incorrect method being invoked --- src/library/blast/hypothesis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library/blast/hypothesis.h b/src/library/blast/hypothesis.h index b33af5727c..5f3485cfc6 100644 --- a/src/library/blast/hypothesis.h +++ b/src/library/blast/hypothesis.h @@ -75,7 +75,7 @@ public: void erase(hypothesis_idx h) { m_set.erase(h); - m_buffer.erase(h); + m_buffer.erase_elem(h); } unsigned size() const { return m_buffer.size(); }