From 08a0b751050f6f362a4432c0ac3dc1c9cae1c2f4 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 10 May 2024 15:30:27 -0400 Subject: [PATCH] cpp-common/bt2c/read-fixed-len-int.hpp: fix comment style Signed-off-by: Philippe Proulx Change-Id: Ibe59847e6db70e6361d57d259155c5489b0e1750 Reviewed-on: https://review.lttng.org/c/babeltrace/+/12763 --- src/cpp-common/bt2c/read-fixed-len-int.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cpp-common/bt2c/read-fixed-len-int.hpp b/src/cpp-common/bt2c/read-fixed-len-int.hpp index 93d85039..5807378d 100644 --- a/src/cpp-common/bt2c/read-fixed-len-int.hpp +++ b/src/cpp-common/bt2c/read-fixed-len-int.hpp @@ -16,8 +16,8 @@ namespace bt2c { /* - * Reads a fixed-length integer of unknown byte order into a value of integral - * type `IntT` from the buffer `buf` and returns it. + * Reads a fixed-length integer of unknown byte order into a value of + * integral type `IntT` from the buffer `buf` and returns it. */ template IntT readFixedLenInt(const std::uint8_t * const buf) @@ -41,8 +41,8 @@ IntT readFixedLenIntLe(const std::uint8_t * const buf) } /* - * Reads a fixed-length big-endian integer into a value of integral - * type `IntT` from the buffer `buf` and returns it. + * Reads a fixed-length big-endian integer into a value of integral type + * `IntT` from the buffer `buf` and returns it. */ template IntT readFixedLenIntBe(const std::uint8_t * const buf) -- 2.34.1