From 23e2378ec92457368d59ab3837d828545c1de31f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 27 Oct 2011 13:22:55 +0200 Subject: Dereference nullable --- common/query/driver.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/query') diff --git a/common/query/driver.cxx b/common/query/driver.cxx index 6d41297..db95a85 100644 --- a/common/query/driver.cxx +++ b/common/query/driver.cxx @@ -458,7 +458,7 @@ main (int argc, char* argv[]) i = r.begin (); assert (i != r.end ()); - assert (i->public_key_ == key2); + assert (*i->public_key_ == key2); assert (++i == r.end ()); #endif -- cgit v1.1