This is really MSVC-specific so I'd rather call that out. I would change the implementation to:
#ifndef _MSC_VER #define OVS_PACKED(DECL) DECL __attribute__((__packed__)) #else #define OVS_PACKED(DECL) __pragma(pack(push, 1)) DECL __pragma(pack(pop)) #endif You didn't provide a Signed-off-by, can you do that please? _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
