From b0dc3764940637d094335db1779e12d929c1b460 Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Mon, 25 Mar 2013 09:55:15 -0300 Subject: [PATCH] Fixed compilation error in pdu_cacher.h. --- include/pdu_cacher.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/include/pdu_cacher.h b/include/pdu_cacher.h index 257138c..8998672 100644 --- a/include/pdu_cacher.h +++ b/include/pdu_cacher.h @@ -130,11 +130,9 @@ public: /** * Forwards the call to the cached PDU. \sa PDU::clone_packet. */ - TINS_DEPRECATED( - PDU *clone_packet(const uint8_t *ptr, uint32_t total_sz) { - return 0; - } - ) + TINS_DEPRECATED(PDU *clone_packet(const uint8_t *ptr, uint32_t total_sz)) { + return 0; + } private: void write_serialization(uint8_t *buffer, uint32_t total_sz, const PDU *parent) { if(cached_serialization.size() != total_sz) {