From: curt Date: Fri, 21 Mar 2003 19:41:04 +0000 (+0000) Subject: Add missing #include which provides a prototype for for_each() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4184882757e2d86e31cdd0ad19d7294c6c4573c4;p=flightgear.git Add missing #include which provides a prototype for for_each() --- diff --git a/src/Cockpit/hud.hxx b/src/Cockpit/hud.hxx index d1239b0a4..45f62339a 100644 --- a/src/Cockpit/hud.hxx +++ b/src/Cockpit/hud.hxx @@ -46,6 +46,7 @@ //# include // for MAXINT //#endif +#include // for_each() #include // STL vector #include // STL double ended queue #include STL_FSTREAM @@ -64,6 +65,7 @@ SG_USING_STD(deque); SG_USING_STD(vector); +SG_USING_STD(for_each); SG_USING_NAMESPACE(std);