From b822b62038cf7b81bc6e7e1facc81e687dfd6edd Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 18 Jun 2013 20:38:08 +0000 Subject: NO-JIRA: Fix compile errors in Windows build. Missing EXTERN declaration in types/Uuid.h. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1494290 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/include/qpid/types/Uuid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/include/qpid') diff --git a/cpp/include/qpid/types/Uuid.h b/cpp/include/qpid/types/Uuid.h index 5e3ee94db0..43ec160ab3 100644 --- a/cpp/include/qpid/types/Uuid.h +++ b/cpp/include/qpid/types/Uuid.h @@ -57,7 +57,7 @@ class QPID_TYPES_CLASS_EXTERN Uuid /** String value in format 1b4e28ba-2fa1-11d2-883f-b9a761bde3fb. */ QPID_TYPES_EXTERN std::string str() const; - QPID_TYPES_EXTERN size_t size() const; + QPID_TYPES_EXTERN size_t size() const; QPID_TYPES_EXTERN const unsigned char* data() const; friend QPID_TYPES_EXTERN bool operator==(const Uuid&, const Uuid&); @@ -70,7 +70,7 @@ class QPID_TYPES_CLASS_EXTERN Uuid friend QPID_TYPES_EXTERN std::istream& operator>>(std::istream&, Uuid&); /** Hash value suitable for use with unordered_map */ - size_t hash() const; + QPID_TYPES_EXTERN size_t hash() const; /** Hasher for use with unordered_map */ struct Hasher { -- cgit v1.2.1