From: Philippe Proulx Date: Fri, 10 May 2024 19:30:27 +0000 (-0400) Subject: cpp-common/bt2c/read-fixed-len-int.hpp: fix comment style X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=08a0b751050f6f362a4432c0ac3dc1c9cae1c2f4;p=babeltrace.git 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 --- 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)