Skip to content
Snippets Groups Projects
Commit 4823d298 authored by g0dil's avatar g0dil
Browse files

Packets: Fix access problems for g++ < 4.1

parent 385fc398
No related branches found
No related tags found
No related merge requests found
......@@ -168,6 +168,11 @@ namespace senf {
ptr appendClone(detail::PacketImpl * impl, iterator base, iterator new_base);
ptr appendClone(detail::PacketImpl * impl, range r);
public:
// Need this for g++ < 4.0. Since PacketInterpreter is not publically visible, it should not
// be a real problem to make impl() public here
using PacketData::impl;
private:
// abstract packet type interface
......
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