From 2dd5d326cbef6ba87d2742876665f14ccb8eaff8 Mon Sep 17 00:00:00 2001 From: Joshua Moerman Date: Tue, 7 Apr 2015 09:06:05 +0200 Subject: [PATCH] Replaces constexpr with const --- lib/splitting_tree.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/splitting_tree.hpp b/lib/splitting_tree.hpp index 5955c21..4ec8c81 100644 --- a/lib/splitting_tree.hpp +++ b/lib/splitting_tree.hpp @@ -61,10 +61,10 @@ struct options { bool randomized = false; }; -constexpr options lee_yannakakis_style{true, true, false}; -constexpr options hopcroft_style{false, false, false}; -constexpr options randomized_lee_yannakakis_style{true, true, true}; -constexpr options randomized_hopcroft_style{false, false, true}; +const options lee_yannakakis_style{true, true, false}; +const options hopcroft_style{false, false, false}; +const options randomized_lee_yannakakis_style{true, true, true}; +const options randomized_hopcroft_style{false, false, true}; /* * The algorithm to create a splitting tree also produces some other useful