From ea2badb25f6b01568945a4953d4d1c674db666c6 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Fri, 17 Mar 2023 17:29:24 +0800 Subject: [PATCH] utils: config_file: add a space after `=` for better readability Signed-off-by: Kefu Chai --- utils/config_file.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/config_file.hh b/utils/config_file.hh index 0c16e49bb0..d9e6e961dc 100644 --- a/utils/config_file.hh +++ b/utils/config_file.hh @@ -156,7 +156,7 @@ public: std::vector _allowed_values; protected: updateable_value_source& the_value() { - any_value* av =_cf->_per_shard_values[_cf->s_shard_id][_per_shard_values_offset].get(); + any_value* av = _cf->_per_shard_values[_cf->s_shard_id][_per_shard_values_offset].get(); return static_cast(av)->value; } const updateable_value_source& the_value() const {