]> git.mxchange.org Git - flightgear.git/commitdiff
Fix a problem for MSVC
authorErik Hofman <erik@ehofman.com>
Fri, 12 Aug 2016 09:48:34 +0000 (11:48 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 22 Sep 2016 21:27:49 +0000 (23:27 +0200)
src/GUI/QtLauncher.cxx

index 2d126ede1405039fe6b3545bef5675a0e3c7d6be..7dc058b82d59b84efb4bc98f3d59757ce9d66081 100644 (file)
@@ -291,7 +291,7 @@ private:
     void onFinished()
     {
         flightgear::PolyLineList::const_iterator begin = m_parsedLines.begin() + m_lineInsertCount;
-        unsigned int numToAdd = std::min(1000UL, m_parsedLines.size() - m_lineInsertCount);
+        unsigned int numToAdd = std::min<unsigned long>(1000UL, m_parsedLines.size() - m_lineInsertCount);
         flightgear::PolyLineList::const_iterator end = begin + numToAdd;
         flightgear::PolyLine::bulkAddToSpatialIndex(begin, end);