From b16f2fb1d2ce3f40b8fd8e47d4b7c6e7d23305fd 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; }