Skip to content

Commit

Permalink
Fix indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofhyphens committed Apr 13, 2019
1 parent 0230138 commit 85dd663
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions xs/src/libslic3r/ConfigBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ class InvalidOptionException : public ConfigOptionException {
using ConfigOptionException::ConfigOptionException;

public:
virtual const char* what() const noexcept {
std::string s("Invalid value for option: ");
s += this->opt_key;
return s.c_str();
}
virtual const char* what() const noexcept {
std::string s("Invalid value for option: ");
s += this->opt_key;
return s.c_str();
}
};

/// Specialization of std::exception to indicate that an unsupported accessor was called on a config option.
Expand Down

0 comments on commit 85dd663

Please sign in to comment.