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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-02-04 18:57:11 +0300
committerVojtech Kral <vojtech@kral.hk>2019-02-04 18:57:11 +0300
commit87ae0610619e296fb7c4ed74ed7b7a28284bce33 (patch)
treefd1eb36c53e08c47a913910d8505f28f5672a77f
parentb3c38812826c68a15bd73ef5aba872c2d5ecead0 (diff)
Fix build: Stray semicolon
-rw-r--r--src/libslic3r/libslic3r.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/libslic3r.h b/src/libslic3r/libslic3r.h
index c7d9f7854..560d74696 100644
--- a/src/libslic3r/libslic3r.h
+++ b/src/libslic3r/libslic3r.h
@@ -169,7 +169,7 @@ template <typename Number>
static inline bool is_approx(Number value, Number test_value)
{
return std::fabs(double(value) - double(test_value)) < double(EPSILON);
-};
+}
} // namespace Slic3r