Commit 95285be0 authored by Andrea Zoli's avatar Andrea Zoli
Browse files

Fix double throw definition.

parent dff888c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ public:
	/// \pre the prefix has been removed
	/// \param packet the stream that contains the source packet without the prefix
	/// \param decodeType (0) do not decode anything (1) decode only sections (prefix, header, data field header, source data field fixed part, source data field variable part) (2) decode blocks (all sections + all blocks of the ‘source data field variable part’)
    Packet* getPacket(ByteStreamPtr packet, int decodeType = 2) throw(PacketException*) throw(PacketException*);
    Packet* getPacket(ByteStreamPtr packet, int decodeType = 2) throw(PacketException*);

protected: