Both line::direction() and line::active_state() methods can throw and
so should not be declared as noexcept.
Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
* @brief Get current direction of this line.
* @return Current direction setting.
*/
- GPIOD_API int direction(void) const noexcept;
+ GPIOD_API int direction(void) const;
/**
* @brief Get current active state of this line.
* @return Current active state setting.
*/
- GPIOD_API int active_state(void) const noexcept;
+ GPIOD_API int active_state(void) const;
/**
* @brief Check if this line is used by the kernel or other user space
return consumer ? ::std::string(consumer) : ::std::string();
}
-int line::direction(void) const noexcept
+int line::direction(void) const
{
this->throw_if_null();
return dir == GPIOD_LINE_DIRECTION_INPUT ? DIRECTION_INPUT : DIRECTION_OUTPUT;
}
-int line::active_state(void) const noexcept
+int line::active_state(void) const
{
this->throw_if_null();