From ad818641b565d9982ab0022e45f3756774d705fa Mon Sep 17 00:00:00 2001 From: koldo Date: Mon, 16 Nov 2020 10:49:15 +0000 Subject: [PATCH] Surface: removed warning git-svn-id: svn://ultimatepp.org/upp/trunk@15429 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/Surface/stl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazaar/Surface/stl.cpp b/bazaar/Surface/stl.cpp index 6b37a4ce3..8f3ff3ced 100644 --- a/bazaar/Surface/stl.cpp +++ b/bazaar/Surface/stl.cpp @@ -219,7 +219,7 @@ void LoadStl(String file, Surface &surf, bool &isText, String &header) { if (!isText) LoadStlBin(file, surf, header); else - throw e; + throw std::move(e); } }