From c4fa7a965dc7548d9269e839d91e5edee2277274 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 2 Mar 2003 16:35:08 +0000 Subject: [PATCH] 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 --- simgear/misc/tabbed_values.cxx | 2 ++ 1 file changed, 2 insertions(+) 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) { -- 2.39.5