cpp-common/bt2c/read-fixed-len-int.hpp: fix comment style
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 10 May 2024 19:30:27 +0000 (15:30 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Wed, 4 Sep 2024 19:05:14 +0000 (15:05 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: Ibe59847e6db70e6361d57d259155c5489b0e1750
Reviewed-on: https://review.lttng.org/c/babeltrace/+/12763

src/cpp-common/bt2c/read-fixed-len-int.hpp

index 93d85039cde9308e13db5728885544274ec5217a..5807378d4225abaf4ca0fab921e12f900f0ec166 100644 (file)
@@ -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 <typename IntT>
 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 <typename IntT>
 IntT readFixedLenIntBe(const std::uint8_t * const buf)
This page took 0.024333 seconds and 4 git commands to generate.