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 <bartosz.golaszewski@linaro.org>
* @brief Reset the line settings to default values.
* @return Reference to self.
*/
- line_settings& reset(void) noexcept;
+ line_settings& reset() noexcept;
/**
* @brief Set direction.
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());