diff --git a/simgear/misc/props_io.cxx b/simgear/misc/props_io.cxx index 35c282f6..ebe0f0f6 100644 --- a/simgear/misc/props_io.cxx +++ b/simgear/misc/props_io.cxx @@ -16,6 +16,7 @@ using std::istream; using std::ifstream; using std::ostream; +using std::ofstream; using std::string; using std::vector; @@ -329,6 +330,8 @@ writeNode (ostream &output, SGPropertyNode node, int indent) doIndent(output, indent); output << "' << endl; } + + return true; } bool @@ -344,6 +347,8 @@ writePropertyList (ostream &output, const SGPropertyList * props) } output << "" << endl; + + return true; } bool