]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/mathml_editor/src/TDocument.cc
ocaml 3.09 transition
[helm.git] / helm / DEVEL / mathml_editor / src / TDocument.cc
index 5f5a07e4b6d0a382f54800a14cc82523519524b2..ca4878e6c75b385b31a2418b9062255556b6a4c5 100644 (file)
@@ -24,6 +24,7 @@
  */
 
 #include <sstream>
+#include <cassert>
 
 #include "globals.hh"
 #include "dom.hh"
@@ -70,7 +71,7 @@ TDocument::serialize(const char* filename) const
 std::string
 TDocument::makeId(unsigned id)
 {
-  ostringstream os;
+  std::ostringstream os;
   os << "I" << id;
   return os.str();
 }