summaryrefslogtreecommitdiff
path: root/cpp/include
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2013-06-18 20:38:08 +0000
committerAlan Conway <aconway@apache.org>2013-06-18 20:38:08 +0000
commitb822b62038cf7b81bc6e7e1facc81e687dfd6edd (patch)
tree3f3a361314d3e1fab9c83a6b6f8ac4d0fd1a4576 /cpp/include
parent8490fc645c6bf81281304afe62d63b9f51808f3d (diff)
downloadqpid-python-b822b62038cf7b81bc6e7e1facc81e687dfd6edd.tar.gz
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
Diffstat (limited to 'cpp/include')
-rw-r--r--cpp/include/qpid/types/Uuid.h4
1 files changed, 2 insertions, 2 deletions
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 {