We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b67b11 commit 5723aa5Copy full SHA for 5723aa5
src/viam/sdk/common/exception.cpp
@@ -6,9 +6,9 @@ namespace viam {
6
namespace sdk {
7
8
Exception::Exception(ErrorCondition condition, const std::string& what)
9
- : std::runtime_error("viam::sdk::Exception: " + what), condition_(condition) {};
+ : std::runtime_error("viam::sdk::Exception: " + what), condition_(condition) {}
10
11
-Exception::Exception(const std::string& what) : Exception(ErrorCondition::k_general, what) {};
+Exception::Exception(const std::string& what) : Exception(ErrorCondition::k_general, what) {}
12
13
const std::error_condition& Exception::condition() const noexcept {
14
return condition_;
0 commit comments