From 67ca0689c94c1c48ecc5b2d5d8828f9beb38738f Mon Sep 17 00:00:00 2001 From: James Turner Date: Sun, 10 Feb 2013 11:53:42 +0000 Subject: [PATCH] Work-around a clang glitch with 10.6 --- src/Aircraft/FlightHistory.hxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Aircraft/FlightHistory.hxx b/src/Aircraft/FlightHistory.hxx index c5d3aa33b..f4e0e8d03 100644 --- a/src/Aircraft/FlightHistory.hxx +++ b/src/Aircraft/FlightHistory.hxx @@ -32,6 +32,8 @@ typedef std::vector SGGeodVec; +const unsigned int SAMPLE_BUCKET_WIDTH = 1024; + /** * record the history of the aircraft's movements, making it available * as a contiguous block. This can be used to show the historical flight-path @@ -69,7 +71,7 @@ private: int simTimeMSec; }; - static const unsigned int SAMPLE_BUCKET_WIDTH = 1024; + /** * Bucket is a fixed-size container of samples. This is a crude slab