From 73b510e639741de29ccd2af2d0ea6309ceda2f8b Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Mon, 12 Mar 2012 16:45:30 +0100 Subject: [PATCH] Bug 1366 - Patch to solve 'sqlite3' was previously declared as a struct --- src/wimax/model/wimax-mac-queue.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wimax/model/wimax-mac-queue.h b/src/wimax/model/wimax-mac-queue.h index 52d5d7878..5644b8d8e 100644 --- a/src/wimax/model/wimax-mac-queue.h +++ b/src/wimax/model/wimax-mac-queue.h @@ -117,7 +117,7 @@ public: void SetFragmentation (MacHeaderType::HeaderType packetType); void SetFragmentNumber (MacHeaderType::HeaderType packetType); void SetFragmentOffset (MacHeaderType::HeaderType packetType, uint32_t offset); -private: + struct QueueElement { QueueElement (void); @@ -146,6 +146,8 @@ private: void SetFragmentOffset (uint32_t offset); }; +private: + /* In the case of non-UGS service flows at the SS side the queue will store both data packets and bandwidth request packets. The two are distinguished by their headers. The below two functions