From 911844b16c6b627f421bc3368de427de3ca9f60c Mon Sep 17 00:00:00 2001 From: Patrick Benavoli Date: Wed, 23 Jul 2014 01:27:00 +0200 Subject: Type mismatch corrections (Windows 64 bits) This patch removes the type mismatch warnings revealed by Windows 64 compiler. Wherever necessary, used size_t type for size related data. Change-Id: Ie045ce95940cd83fe8d681168ac9526fc6028d43 Signed-off-by: Patrick Benavoli --- remote-processor/RequestMessage.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'remote-processor/RequestMessage.h') diff --git a/remote-processor/RequestMessage.h b/remote-processor/RequestMessage.h index 17f433b..7a30aaa 100644 --- a/remote-processor/RequestMessage.h +++ b/remote-processor/RequestMessage.h @@ -64,7 +64,10 @@ private: // Collect received data virtual void collectReceivedData(); // Size - virtual uint32_t getDataSize() const; + /** + * @return size of the request message in bytes + */ + virtual size_t getDataSize() const; // Trim input std::string static std::string trim(const std::string& strToTrim); -- cgit v1.1