From af4fa6152bee2fa514940a09fbfa40af4ad0af5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Dziepak?= Date: Fri, 10 Nov 2017 15:08:54 +0000 Subject: [PATCH] partition_start: make partition_tombstone() const --- streamed_mutation.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamed_mutation.hh b/streamed_mutation.hh index 0a7fdcb7f0..ec5d7bb1dd 100644 --- a/streamed_mutation.hh +++ b/streamed_mutation.hh @@ -174,7 +174,7 @@ public: dht::decorated_key& key() { return _key; } const dht::decorated_key& key() const { return _key; } - tombstone& partition_tombstone() { return _partition_tombstone; } + tombstone partition_tombstone() const { return _partition_tombstone; } position_in_partition_view position() const;