CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 05/03/24 07:41:01
Modified files:
src : log.hpp map_create.cpp
Log message:
log.hpp doesn't use operator<<. Why add a dependency on ostream?
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/log.hpp.diff?tr1=1.18&tr2=1.19&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/map_create.cpp.diff?tr1=1.4&tr2=1.5&r1=text&r2=text
Patches:
Index: wesnoth/src/log.hpp
diff -u wesnoth/src/log.hpp:1.18 wesnoth/src/log.hpp:1.19
--- wesnoth/src/log.hpp:1.18 Wed Mar 23 22:01:47 2005
+++ wesnoth/src/log.hpp Thu Mar 24 07:41:00 2005
@@ -1,4 +1,4 @@
-/* $Id: log.hpp,v 1.18 2005/03/23 22:01:47 ydirson Exp $ */
+/* $Id: log.hpp,v 1.19 2005/03/24 07:41:00 silene Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
2004 by Guillaume Melquiond <[EMAIL PROTECTED]>
@@ -15,7 +15,6 @@
#define LOG_HPP_INCLUDED
#include <iosfwd>
-#include <ostream>
#include <string>
namespace lg {
Index: wesnoth/src/map_create.cpp
diff -u wesnoth/src/map_create.cpp:1.4 wesnoth/src/map_create.cpp:1.5
--- wesnoth/src/map_create.cpp:1.4 Wed Mar 23 22:08:52 2005
+++ wesnoth/src/map_create.cpp Thu Mar 24 07:41:00 2005
@@ -7,6 +7,7 @@
#include "scoped_resource.hpp"
#include "serialization/string_utils.hpp"
+#include <ostream>
#include <string>
#include <vector>