From 4041d41562b4c13ba5ca40123ad1d7257d6621dc Mon Sep 17 00:00:00 2001 From: Curve Date: Wed, 22 May 2024 03:05:23 +0200 Subject: [PATCH] refactor(lazy): naming --- include/rohrkabel/utils/lazy.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/rohrkabel/utils/lazy.hpp b/include/rohrkabel/utils/lazy.hpp index 79aedc5..c047908 100644 --- a/include/rohrkabel/utils/lazy.hpp +++ b/include/rohrkabel/utils/lazy.hpp @@ -32,18 +32,18 @@ namespace pipewire template class cancellable_lazy : public lazy { - std::stop_source stop; + std::stop_source m_stop; public: template cancellable_lazy(std::stop_source stop, Args &&...args) - : lazy(std::forward(args)...), stop(std::move(stop)) + : lazy(std::forward(args)...), m_stop(std::move(stop)) { } [[nodiscard]] std::stop_source stop_source() const { - return stop; + return m_stop; } };