[PATCH 2/3] decimal: add const qualifiers for decimal_pack() and decimal_len()

Serge Petrenko sergepetrenko at tarantool.org
Fri Jun 21 12:02:06 MSK 2019


The const qualifiers weren't there initially for some reason.
Fix this.

Part of #692
---
 src/lib/core/decimal.c | 4 ++--
 src/lib/core/decimal.h | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/lib/core/decimal.c b/src/lib/core/decimal.c
index 8f7ca3fbe..1f9b5838d 100644
--- a/src/lib/core/decimal.c
+++ b/src/lib/core/decimal.c
@@ -310,14 +310,14 @@ decimal_sqrt(decimal_t *res, const decimal_t *lhs)
 }
 
 uint32_t
-decimal_len(decimal_t *dec)
+decimal_len(const decimal_t *dec)
 {
 	/* 1  + ceil((digits + 1) / 2) */
 	return 2 + dec->digits / 2;
 }
 
 char *
-decimal_pack(char *data, decimal_t *dec)
+decimal_pack(char *data, const decimal_t *dec)
 {
 	uint32_t len = decimal_len(dec);
 	*data++ = decimal_scale(dec);
diff --git a/src/lib/core/decimal.h b/src/lib/core/decimal.h
index 0c7b16098..1d0f2582e 100644
--- a/src/lib/core/decimal.h
+++ b/src/lib/core/decimal.h
@@ -173,7 +173,7 @@ decimal_sqrt(decimal_t *res, const decimal_t *lhs);
 
 /** @return The length in bytes decimal packed representation will take. */
 uint32_t
-decimal_len(decimal_t *dec);
+decimal_len(const decimal_t *dec);
 
 /**
  * Convert a decimal \a dec to its packed representation.
@@ -181,7 +181,7 @@ decimal_len(decimal_t *dec);
  * @return data + decimal_len(dec);
  */
 char *
-decimal_pack(char *data, decimal_t *dec);
+decimal_pack(char *data, const decimal_t *dec);
 
 /**
  * Using a packed representation of size \a len pointed to by
-- 
2.20.1 (Apple Git-117)




More information about the Tarantool-patches mailing list