From 0dce63db29bcdd35dba8e3dd6f05986f0d1e41d0 Mon Sep 17 00:00:00 2001 From: vl Date: Thu, 13 May 2010 22:44:07 +0200 Subject: [PATCH] Fixed: #887 add missing ; --- code/nel/include/nel/misc/static_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/include/nel/misc/static_map.h b/code/nel/include/nel/misc/static_map.h index 939bd26bb..bf5184017 100644 --- a/code/nel/include/nel/misc/static_map.h +++ b/code/nel/include/nel/misc/static_map.h @@ -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; }