From 4c813b3210a8347053890413f95f0067af10f9e5 Mon Sep 17 00:00:00 2001 From: tho <tho@wiback.org> Date: Mon, 12 Jan 2009 16:26:10 +0000 Subject: [PATCH] GenericTLVPacketParser: fix for 64bit --- Packets/80221Bundle/TLVPacket.ct | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Packets/80221Bundle/TLVPacket.ct b/Packets/80221Bundle/TLVPacket.ct index 26e53f3c..58001582 100644 --- a/Packets/80221Bundle/TLVPacket.ct +++ b/Packets/80221Bundle/TLVPacket.ct @@ -1,4 +1,4 @@ -// $Id: TLVPacket.ct 1029 2008-12-19 13:08:19Z tho $ +// $Id$ // // Copyright (C) 2007 // Fraunhofer Institute for Open Communication Systems (FOKUS) @@ -33,8 +33,8 @@ template <class ForwardReadableRange> prefix_ void senf::GenericTLVPacketParser::value(ForwardReadableRange const &range) { - size_type range_size ( boost::size(range)); - size_type current_length ( length()); + DynamicTLVLengthParser::value_type range_size ( boost::size(range)); + DynamicTLVLengthParser::value_type current_length ( length()); length( range_size); safe_data_iterator si (data(), boost::next(i(), 1 + length_bytes() )); -- GitLab