From 1de736019db5aefb6aab76f57a5a14030a0def2e Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 27 Jun 2014 10:28:42 +0200 Subject: [PATCH] make canary static const instead of constexpr --- Server/DataStructures/SharedDataType.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/DataStructures/SharedDataType.h b/Server/DataStructures/SharedDataType.h index 98bdfd5de..e2351d8e9 100644 --- a/Server/DataStructures/SharedDataType.h +++ b/Server/DataStructures/SharedDataType.h @@ -36,7 +36,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include // Added at the start and end of each block as sanity check -constexpr char CANARY[] = "OSRM"; +static const char CANARY[] = "OSRM"; struct SharedDataLayout {