Skip to content

Commit

Permalink
Fix getRawPacketReadOnly() const-correctness #1573
Browse files Browse the repository at this point in the history
  • Loading branch information
egecetin committed Nov 5, 2024
1 parent 35f486c commit 1f690a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packet++/header/Packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ namespace pcpp
* Get a pointer to the Packet's RawPacket in a read-only manner
* @return A pointer to the Packet's RawPacket
*/
RawPacket* getRawPacketReadOnly() const
const RawPacket* getRawPacketReadOnly() const
{
return m_RawPacket;
}
Expand Down

0 comments on commit 1f690a9

Please sign in to comment.