From: Florent Rougon Date: Mon, 9 May 2016 14:37:09 +0000 (+0200) Subject: Fix missing include in simgear/misc/strutils_test.cxx X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6672a1212cfccb2a08be21ff5271eae9b6f91b2a;p=simgear.git Fix missing include in simgear/misc/strutils_test.cxx strutils_test.cxx uses std::string but doesn't include directly. This doesn't cause any error because it includes this header indirectly via "strutils.hxx". However, I believe relying on this is bad practice, hence the tiny fix. --- diff --git a/simgear/misc/strutils_test.cxx b/simgear/misc/strutils_test.cxx index 0ab87224..6c654f5e 100644 --- a/simgear/misc/strutils_test.cxx +++ b/simgear/misc/strutils_test.cxx @@ -4,6 +4,7 @@ #include #include // _set_errno() on Windows +#include #include // std::ifstream #include #include "strutils.hxx"