summaryrefslogtreecommitdiff
path: root/cli/parser.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-05-11 10:40:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-05-11 10:40:02 +0200
commit8062e4e9a4998cfa44002afd2435ff9083e092e8 (patch)
tree3c3a53c0f7e03309a1a83896bd01e90348ec741f /cli/parser.cxx
parent0a1c72f32cd709972d6e4e5591dfd05d91edc8e1 (diff)
Fix lookup bug
Diffstat (limited to 'cli/parser.cxx')
-rw-r--r--cli/parser.cxx2
1 files changed, 1 insertions, 1 deletions
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<T> (n, name, unit, false);
+ return lookup<T> (n, name, unit, true);
}
return 0;