Fixed an uninitialized variable in Domain1D

This commit is contained in:
Ray Speth 2012-12-18 00:13:48 +00:00
parent e4705bece1
commit 8587abf17f

View file

@ -48,6 +48,7 @@ public:
Domain1D(size_t nv=1, size_t points=1,
doublereal time = 0.0) :
m_rdt(0.0),
m_nv(0),
m_time(time),
m_container(0),
m_index(npos),