From ebd579a64a659b4ed2814cb7903e3d4ee7032501 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 27 May 2006 14:13:06 +0200 Subject: Avoiding a compiler warning in libsi's TypeLoop::operator[] --- libsi/si.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libsi') diff --git a/libsi/si.h b/libsi/si.h index 6922cdcd..a4877169 100644 --- a/libsi/si.h +++ b/libsi/si.h @@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.h 1.14 2006/04/14 10:53:44 kls Exp $ + * $Id: si.h 1.15 2006/05/27 13:07:20 kls Exp $ * * ***************************************************************************/ @@ -399,6 +399,7 @@ public: case 8: return (SixtyFourBit(data.FourBytes(index)) << 32) | data.FourBytes(index+4); } + return 0; // just to avoid a compiler warning } T getNext(Iterator &it) const { -- cgit v1.2.3