bindings: cxx: drop noexcept from direction() and active_state()
authorKent Gibson <warthog618@gmail.com>
Fri, 15 Nov 2019 14:43:41 +0000 (22:43 +0800)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 18 Nov 2019 14:27:21 +0000 (15:27 +0100)
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>
bindings/cxx/gpiod.hpp
bindings/cxx/line.cpp

index 13b4d5b3421fde755a39af2e0918d2a6e62bb85d..b5a9401d2be4688fcc7099e26f18319dce2e63eb 100644 (file)
@@ -312,13 +312,13 @@ public:
         * @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
index b698960393aac3c24c4e5c8db38942e787bb1a79..df6eada274f7843454696760909fd1d830f41fc1 100644 (file)
@@ -49,7 +49,7 @@ unsigned int line::offset(void) const
        return consumer ? ::std::string(consumer) : ::std::string();
 }
 
-int line::direction(void) const noexcept
+int line::direction(void) const
 {
        this->throw_if_null();
 
@@ -58,7 +58,7 @@ int line::direction(void) const noexcept
        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();