Fixed: #887 add missing ;

This commit is contained in:
vl 2010-05-13 22:44:07 +02:00
parent 88bc352b2b
commit 0dce63db29

View file

@ -144,7 +144,7 @@ public:
{
iterator __i = find(__k);
// The key MUST exist no automatic insertion done in this class
nlassert(__i != end())
nlassert(__i != end());
return (*__i).second;
}