From 83a3241830361f621259f37ec9953a74b972fb96 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 30 Sep 2013 16:44:04 +0100 Subject: [PATCH] Fix a signed/unsigned compare warning --- simgear/scene/tsync/terrasync.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/scene/tsync/terrasync.cxx b/simgear/scene/tsync/terrasync.cxx index ed613336..4fa9905a 100644 --- a/simgear/scene/tsync/terrasync.cxx +++ b/simgear/scene/tsync/terrasync.cxx @@ -176,7 +176,7 @@ public: static const int SYNC_SLOT_TILES = 0; ///< Terrain and Objects sync static const int SYNC_SLOT_SHARED_DATA = 1; /// shared Models and Airport data -static const int NUM_SYNC_SLOTS = 2; +static const unsigned int NUM_SYNC_SLOTS = 2; /** * @brief translate a sync item type into one of the available slots. -- 2.39.5