]> git.mxchange.org Git - flightgear.git/commitdiff
Add missing include in src/Navaids/NavDataCache.cxx
authorFlorent Rougon <f.rougon@free.fr>
Wed, 18 May 2016 08:13:18 +0000 (10:13 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 22 Sep 2016 21:27:35 +0000 (23:27 +0200)
#include <sstream> is needed for NavDataCachePrivate::init()
which uses std::ostringstream.

src/Navaids/NavDataCache.cxx

index a2b841397e49a5bded56800989c377c73cf7b4bb..ea83e861d03db1c08e7599910429a1e23c559b58 100644 (file)
@@ -29,6 +29,7 @@
 #include <map>
 #include <cassert>
 #include <stdint.h> // for int64_t
+#include <sstream>  // for std::ostringstream
 // boost
 #include <boost/foreach.hpp>