I use g++ to compile code with packed fields. However, I receive an error when trying to return a reference to a packed field.
Example:
struct __attribute__((packed)) Foo {
int* ptr;
uint16_t foo;
int*& getPtr(){
return ptr;
}
};
yields error:
test.cpp:22:14: error: cannot bind packed field ‘((Foo*)this)->Foo::ptr’ to ‘int*&’
return ptr;
Why can't I return a reference to a packed field?
There is a gcc bug report Cannot bind packed field that covers this and it says:
They suggest a workaround using
alignment
attribute to define your own aligned type but it does not look like it works.