Skip to content

Commit 5723aa5

Browse files
committed
remove semicolons for linter
1 parent 1b67b11 commit 5723aa5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/viam/sdk/common/exception.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ namespace viam {
66
namespace sdk {
77

88
Exception::Exception(ErrorCondition condition, const std::string& what)
9-
: std::runtime_error("viam::sdk::Exception: " + what), condition_(condition) {};
9+
: std::runtime_error("viam::sdk::Exception: " + what), condition_(condition) {}
1010

11-
Exception::Exception(const std::string& what) : Exception(ErrorCondition::k_general, what) {};
11+
Exception::Exception(const std::string& what) : Exception(ErrorCondition::k_general, what) {}
1212

1313
const std::error_condition& Exception::condition() const noexcept {
1414
return condition_;

0 commit comments

Comments
 (0)