From de2c6a2a3dbf4f19da7e27c78a673e92b9872075 Mon Sep 17 00:00:00 2001
From: bubnikv <bubnikv@gmail.com>
Date: Tue, 17 Oct 2017 17:53:16 +0200
Subject: [PATCH] exception what() method shall be noexcept.

---
 xs/src/libslic3r/Config.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xs/src/libslic3r/Config.hpp b/xs/src/libslic3r/Config.hpp
index 7d76487c1..e4968a24b 100644
--- a/xs/src/libslic3r/Config.hpp
+++ b/xs/src/libslic3r/Config.hpp
@@ -998,7 +998,7 @@ protected:
 class UnknownOptionException : public std::exception
 {
 public:
-    const char* what() const _NOEXCEPT override { return "Unknown config option"; }
+    const char* what() const noexcept override { return "Unknown config option"; }
 };
 
 }