From 85dd6633fbe186cb4872c944ca54f49402634c57 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sat, 13 Apr 2019 13:56:01 -0500 Subject: [PATCH] Fix indentation. --- xs/src/libslic3r/ConfigBase.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xs/src/libslic3r/ConfigBase.hpp b/xs/src/libslic3r/ConfigBase.hpp index e07b8d52c..79954e981 100644 --- a/xs/src/libslic3r/ConfigBase.hpp +++ b/xs/src/libslic3r/ConfigBase.hpp @@ -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.