Skip to content
Snippets Groups Projects
Commit 4c813b32 authored by tho's avatar tho
Browse files

GenericTLVPacketParser: fix for 64bit

parent bdecbc7f
No related branches found
No related tags found
No related merge requests found
// $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() ));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment