From 4b8e0740c480b5c27167b6852551641925893926 Mon Sep 17 00:00:00 2001 From: ThorstenB Date: Tue, 27 Nov 2012 21:01:03 +0100 Subject: [PATCH] Fix compile error "ISO C++ forbids initialization of member" --- src/Navaids/NavDataCache.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Navaids/NavDataCache.cxx b/src/Navaids/NavDataCache.cxx index 60d6aab44..05e8c011e 100644 --- a/src/Navaids/NavDataCache.cxx +++ b/src/Navaids/NavDataCache.cxx @@ -334,7 +334,7 @@ public: return stepSelect(stmt); } - const int MAX_RETRIES = 10; + static const int MAX_RETRIES = 10; bool stepSelect(sqlite3_stmt_ptr stmt) { -- 2.39.5