From 4510231c95a087f58a155cf74164e403e1e0584f Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Mon, 26 Jun 2023 12:44:57 +0200 Subject: [PATCH] bindings: cxx: use () instead of (void) in line_settings::reset() While () and (void) are synonymous in C++, we use () everywhere else so fix the only exception. This DOES NOT change the ABI as the generated symbol is the same (at least as verified on gcc and clang). Signed-off-by: Bartosz Golaszewski --- bindings/cxx/gpiodcxx/line-settings.hpp | 2 +- bindings/cxx/line-settings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/cxx/gpiodcxx/line-settings.hpp b/bindings/cxx/gpiodcxx/line-settings.hpp index b043167..bacf359 100644 --- a/bindings/cxx/gpiodcxx/line-settings.hpp +++ b/bindings/cxx/gpiodcxx/line-settings.hpp @@ -70,7 +70,7 @@ public: * @brief Reset the line settings to default values. * @return Reference to self. */ - line_settings& reset(void) noexcept; + line_settings& reset() noexcept; /** * @brief Set direction. diff --git a/bindings/cxx/line-settings.cpp b/bindings/cxx/line-settings.cpp index 272a848..30d7899 100644 --- a/bindings/cxx/line-settings.cpp +++ b/bindings/cxx/line-settings.cpp @@ -179,7 +179,7 @@ GPIOD_CXX_API line_settings& line_settings::operator=(line_settings&& other) return *this; } -GPIOD_CXX_API line_settings& line_settings::reset(void) noexcept +GPIOD_CXX_API line_settings& line_settings::reset() noexcept { ::gpiod_line_settings_reset(this->_m_priv->settings.get()); -- 2.30.2