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 Bubnik <bubnikv@gmail.com>2021-10-22 12:31:16 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-10-22 15:02:53 +0300
commit48e89e0b0d3eb20ce0dfedfb85ad702978c1877a (patch)
treeef0877683dc969e36308a969a2a4bbcb91a76432 /src/slic3r/Utils
parentf9e3e1d9fd7e8bc4b9c5b9385e4a2d4105498b5c (diff)
const replaced with satic constexpr const
Diffstat (limited to 'src/slic3r/Utils')
-rw-r--r--src/slic3r/Utils/PresetUpdater.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/Utils/PresetUpdater.hpp b/src/slic3r/Utils/PresetUpdater.hpp
index d0d18a7d8..085aaa4a6 100644
--- a/src/slic3r/Utils/PresetUpdater.hpp
+++ b/src/slic3r/Utils/PresetUpdater.hpp
@@ -13,7 +13,7 @@ class AppConfig;
class PresetBundle;
class Semver;
-const int SLIC3R_VERSION_BODY_MAX = 256;
+static constexpr const int SLIC3R_VERSION_BODY_MAX = 256;
class PresetUpdater
{