diff options
author | Mattias Andrée <maandree@kth.se> | 2016-07-16 11:10:10 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-07-16 11:10:10 +0200 |
commit | 73f545ac0fa167aa71b1d0f78de533cf4d5978ef (patch) | |
tree | 4942d780580622c65e276d3cfb50a1aa5274dd3e /src/message.c | |
parent | m (diff) | |
download | coopgammad-73f545ac0fa167aa71b1d0f78de533cf4d5978ef.tar.gz coopgammad-73f545ac0fa167aa71b1d0f78de533cf4d5978ef.tar.bz2 coopgammad-73f545ac0fa167aa71b1d0f78de533cf4d5978ef.tar.xz |
Fix warnings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | src/message.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/message.c b/src/message.c index 6a5ad90..619ae25 100644 --- a/src/message.c +++ b/src/message.c @@ -69,6 +69,13 @@ void message_destroy(struct message* this) } + +#if defined(__clang__) +# pragma GCC diagnostic push +# pragma GCC diagnostic ignored "-Wcast-align" +#endif + + /** * Marshal a message for state serialisation * @@ -216,6 +223,12 @@ size_t message_unmarshal(struct message* this, const void* buf) } +#if defined(__clang__) +# pragma GCC diagnostic pop +#endif + + + /** * Extend the header list's allocation * |