From 2f2e0340ae46fb37421e13108fae71e710b5515b Mon Sep 17 00:00:00 2001
From: Mark Haines <mark.haines@matrix.org>
Date: Tue, 3 Mar 2015 15:08:26 +0000
Subject: [PATCH] const on right hand side

---
 src/ratchet.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ratchet.cpp b/src/ratchet.cpp
index 72c6e82..d2903bb 100644
--- a/src/ratchet.cpp
+++ b/src/ratchet.cpp
@@ -274,7 +274,7 @@ std::size_t axolotl::Session::encrypt(
 
     std::size_t padded = axolotl::aes_encrypt_cbc_length(plaintext_length);
     std::uint32_t counter = keys.index;
-    const Curve25519PublicKey &ratchet_key = sender_chain[0].ratchet_key;
+    Curve25519PublicKey const & ratchet_key = sender_chain[0].ratchet_key;
 
     axolotl::MessageWriter writer(axolotl::encode_message(
         PROTOCOL_VERSION, counter, KEY_LENGTH, padded, output
-- 
GitLab