From 8062e4e9a4998cfa44002afd2435ff9083e092e8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 11 May 2012 10:40:02 +0200 Subject: Fix lookup bug --- cli/parser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/parser.cxx b/cli/parser.cxx index 00803f2..8289fce 100644 --- a/cli/parser.cxx +++ b/cli/parser.cxx @@ -1350,7 +1350,7 @@ lookup (string const& ss, string const& name, cli_unit* unit, bool outer) if (outer && !ss.empty ()) { string n (ss, 0, ss.rfind ("::")); - return lookup (n, name, unit, false); + return lookup (n, name, unit, true); } return 0; -- cgit v1.1