From: mtk <mtk@270642c3-0616-0410-b53a-bc976706d245>
Date: Tue, 1 Nov 2011 13:14:46 +0000 (+0000)
Subject: fixed a computed value not used warning
X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=ff5e62baaa8f7e571fbe767f7b2ce7f129c783c4;p=senf.git

fixed a computed value not used warning


git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1820 270642c3-0616-0410-b53a-bc976706d245
---

diff --git a/senf/Packets/GenericTLV.ct b/senf/Packets/GenericTLV.ct
index cb71af7..a2df5c0 100644
--- a/senf/Packets/GenericTLV.ct
+++ b/senf/Packets/GenericTLV.ct
@@ -103,7 +103,7 @@ prefix_ void senf::GenericTLVParserRegistry<BaseParser,Keytype>::registerParser(
 {
     Keytype key (Parser::typeId+0);
     SENF_ASSERT_EXPRESSION(
-            map_.insert( key, new detail::GenericTLVParserRegistry_Entry<BaseParser, Parser>()).second == true,
+            map_.insert( key, new detail::GenericTLVParserRegistry_Entry<BaseParser, Parser>()).second,
         "Duplicate TLV registration");
 }