From: Philippe Proulx Date: Mon, 2 May 2022 14:08:03 +0000 (-0400) Subject: Make `bt2_common::UuidView` final X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=e3e662d30a75231e283abd26a0d0349f8d5c8816;p=babeltrace.git Make `bt2_common::UuidView` final Signed-off-by: Philippe Proulx Change-Id: I79ea919d497065256a445fc0faeb59e4267a466a Reviewed-on: https://review.lttng.org/c/babeltrace/+/7972 Reviewed-on: https://review.lttng.org/c/babeltrace/+/10821 Tested-by: jenkins --- diff --git a/src/cpp-common/uuid-view.hpp b/src/cpp-common/uuid-view.hpp index 5c248b61..8829019b 100644 --- a/src/cpp-common/uuid-view.hpp +++ b/src/cpp-common/uuid-view.hpp @@ -16,7 +16,7 @@ namespace bt2_common { -class UuidView +class UuidView final { public: explicit UuidView(const std::uint8_t * const uuid) noexcept : _mUuid {uuid}