Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-03-27 14:14:34 +0300
committerVojtech Kral <vojtech@kral.hk>2019-03-27 14:14:34 +0300
commit734d57a714ebe33d221fd331ba5d54e8574f05a4 (patch)
tree14e04bafb792d8369443339d7afd75608adb47f3 /src/slic3r/GUI/GUI_Utils.hpp
parent8ea8eb67e46b019febcbf5c77f5f4e9786aab57e (diff)
Fix build on MSVC with PCH off
Diffstat (limited to 'src/slic3r/GUI/GUI_Utils.hpp')
-rw-r--r--src/slic3r/GUI/GUI_Utils.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/GUI_Utils.hpp b/src/slic3r/GUI/GUI_Utils.hpp
index d84dd40f9..8d942dcf8 100644
--- a/src/slic3r/GUI/GUI_Utils.hpp
+++ b/src/slic3r/GUI/GUI_Utils.hpp
@@ -103,7 +103,7 @@ public:
}
void unbind() { event_storage.reset(nullptr); }
- explicit operator bool() const noexcept { return !!event_storage; }
+ explicit operator bool() const { return !!event_storage; }
};