From ab0ef2896575cd0b006f552951bf1951eee22b8e Mon Sep 17 00:00:00 2001 From: Kevin Murray Date: Tue, 12 Jan 2016 13:25:34 +1100 Subject: [PATCH] Const-ify khmer::CountingHash::get_raw_tables meth This is an UPSTREAM patch --- src/ext/oxli/counting.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext/oxli/counting.hh b/src/ext/oxli/counting.hh index 779755b..cbfe220 100644 --- a/src/ext/oxli/counting.hh +++ b/src/ext/oxli/counting.hh @@ -140,7 +140,7 @@ public: // Writing to the tables outside of defined methods has undefined behavior! // As such, this should only be used to return read-only interfaces - Byte ** get_raw_tables() + Byte ** get_raw_tables() const { return _counts; }