summaryrefslogtreecommitdiff
path: root/qpid/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
commitc9f044cb38b6c0cff4b7dd82c69140ae30af26aa (patch)
treefc9b5764ca73c74c9ea4f6aafc28612093698359 /qpid/cpp/include
parentd2fbb54eaa3e3a0e733740dac093282e1d60c48f (diff)
downloadqpid-python-c9f044cb38b6c0cff4b7dd82c69140ae30af26aa.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@1494290 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
-rw-r--r--qpid/cpp/include/qpid/types/Uuid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/include/qpid/types/Uuid.h b/qpid/cpp/include/qpid/types/Uuid.h
index 5e3ee94db0..43ec160ab3 100644
--- a/qpid/cpp/include/qpid/types/Uuid.h
+++ b/qpid/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 {