From b4ceb7b6aecb7492b28d7a0f6c53fa657a2cd2e5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 8 Apr 2015 16:24:14 +0200 Subject: Inherit list_value directly from names --- build/dump.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build/dump.cxx') diff --git a/build/dump.cxx b/build/dump.cxx index 5ba7269..6c1cdcf 100644 --- a/build/dump.cxx +++ b/build/dump.cxx @@ -62,12 +62,12 @@ namespace build << ind << var.name << " = "; if (val == nullptr) - cerr << "[undefined]"; + cerr << "[null]"; else { //@@ TODO: assuming it is a list. // - cerr << dynamic_cast (*val).data; + cerr << dynamic_cast (*val); } vb = true; -- cgit v1.1