[cig-commits] r16456 - short/3D/PyLith/trunk/libsrc/topology

willic3 at geodynamics.org willic3 at geodynamics.org
Thu Mar 25 16:03:04 PDT 2010


Author: willic3
Date: 2010-03-25 16:03:03 -0700 (Thu, 25 Mar 2010)
New Revision: 16456

Modified:
   short/3D/PyLith/trunk/libsrc/topology/Mesh.cc
   short/3D/PyLith/trunk/libsrc/topology/SubMesh.cc
Log:
Added some #include's that were preventing things from building.
Not sure why this just showed up.



Modified: short/3D/PyLith/trunk/libsrc/topology/Mesh.cc
===================================================================
--- short/3D/PyLith/trunk/libsrc/topology/Mesh.cc	2010-03-25 00:15:43 UTC (rev 16455)
+++ short/3D/PyLith/trunk/libsrc/topology/Mesh.cc	2010-03-25 23:03:03 UTC (rev 16456)
@@ -17,6 +17,9 @@
 #include "spatialdata/geocoords/CoordSys.hh" // USES CoordSys
 #include "spatialdata/units/Nondimensional.hh" // USES Nondimensional
 #include "pylith/utils/array.hh" // USES double_array
+#include <stdexcept> // USES std::runtime_error
+#include <sstream> // USES std::ostringstream
+#include <cassert> // USES assert()
 
 // ----------------------------------------------------------------------
 // Default constructor

Modified: short/3D/PyLith/trunk/libsrc/topology/SubMesh.cc
===================================================================
--- short/3D/PyLith/trunk/libsrc/topology/SubMesh.cc	2010-03-25 00:15:43 UTC (rev 16455)
+++ short/3D/PyLith/trunk/libsrc/topology/SubMesh.cc	2010-03-25 23:03:03 UTC (rev 16456)
@@ -18,6 +18,10 @@
 
 #include <Selection.hh> // USES ALE::Selection
 
+#include <stdexcept> // USES std::runtime_error
+#include <sstream> // USES std::ostringstream
+#include <cassert> // USES assert()
+
 // ----------------------------------------------------------------------
 // Default constructor
 pylith::topology::SubMesh::SubMesh(void) :



More information about the CIG-COMMITS mailing list