From 8cdc8008c36bd03e44e43aef3fc84ff20df7bd34 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 16 May 2007 05:38:01 +0000 Subject: Corrected problem with uninitialized value_t's. --- src/node.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/node.h') diff --git a/src/node.h b/src/node.h index d394e7ee..2a137e86 100644 --- a/src/node.h +++ b/src/node.h @@ -232,6 +232,7 @@ public: virtual value_t to_value() const { throw_(std::logic_error, "Cannot convert parent node to a value"); + return NULL_VALUE; } void print(std::ostream& out) const; -- cgit v1.2.3