Skip to content

Commit

Permalink
remove semicolons for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
lia-viam committed Jan 7, 2025
1 parent 1b67b11 commit 5723aa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/viam/sdk/common/exception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ namespace viam {
namespace sdk {

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

Exception::Exception(const std::string& what) : Exception(ErrorCondition::k_general, what) {};
Exception::Exception(const std::string& what) : Exception(ErrorCondition::k_general, what) {}

const std::error_condition& Exception::condition() const noexcept {
return condition_;
Expand Down

0 comments on commit 5723aa5

Please sign in to comment.