cpp-common/bt2/trace-ir.hpp: use "common event context"
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 10 May 2024 19:57:46 +0000 (15:57 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Wed, 4 Sep 2024 19:05:14 +0000 (15:05 -0400)
This is easier to read.

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: Iabfe3b3a44dcdfad03be47c3cb69b64fb729e91c
Reviewed-on: https://review.lttng.org/c/babeltrace/+/12732

src/cpp-common/bt2/trace-ir.hpp

index 6677d7028aa464a973c58af39e2c133ab604f97e..d0e75a866aa0aeb4225c56b425f7261e7310b96c 100644 (file)
@@ -1554,7 +1554,7 @@ public:
         return _Spec::packetContextFieldClass(this->libObjPtr());
     }
 
-    CommonStreamClass eventCommonContextFieldClass(const StructureFieldClass fc) const
+    CommonStreamClass commonEventContextFieldClass(const StructureFieldClass fc) const
     {
         static_assert(!std::is_const<LibObjT>::value,
                       "Not available with `bt2::ConstStreamClass`.");
@@ -1569,9 +1569,9 @@ public:
         return *this;
     }
 
-    OptionalBorrowedObject<_StructureFieldClass> eventCommonContextFieldClass() const noexcept
+    OptionalBorrowedObject<_StructureFieldClass> commonEventContextFieldClass() const noexcept
     {
-        return _Spec::eventCommonContextFieldClass(this->libObjPtr());
+        return _Spec::commonEventContextFieldClass(this->libObjPtr());
     }
 
     template <typename LibValT>
This page took 0.025277 seconds and 4 git commands to generate.