Bug fix - uninitialized variable

release/4.3a0
Richard Roberts 2010-10-13 15:56:42 +00:00
parent b56b0fe3a4
commit bd9d0a2ce0
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public:
typedef boost::iterator_range<const_iterator> Parents;
/** Empty Constructor to make serialization possible */
Conditional(){}
Conditional() : nrFrontals_(0) {}
/** No parents */
Conditional(Index key) : factor_(key), nrFrontals_(1) {}