From: david Date: Sun, 2 Mar 2003 16:35:08 +0000 (+0000) Subject: Patch from Frederic Bouvier: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c4fa7a965dc7548d9269e839d91e5edee2277274;p=simgear.git Patch from Frederic Bouvier: I am trying to compile tabbed_values.cxx and found that it requires assert.h to compile with MSVC (on Linux, it must be included indirectly). There is a patch below --- diff --git a/simgear/misc/tabbed_values.cxx b/simgear/misc/tabbed_values.cxx index fb935e43..1e850cbc 100644 --- a/simgear/misc/tabbed_values.cxx +++ b/simgear/misc/tabbed_values.cxx @@ -1,5 +1,7 @@ #include "tabbed_values.hxx" +#include "assert.h" + SGTabbedValues::SGTabbedValues(const char *line) : _line(line) {