diff options
Diffstat (limited to 'cpp/include/qpid/Url.h')
-rw-r--r-- | cpp/include/qpid/Url.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/qpid/Url.h b/cpp/include/qpid/Url.h index 353e9d5599..915b08ac5f 100644 --- a/cpp/include/qpid/Url.h +++ b/cpp/include/qpid/Url.h @@ -66,7 +66,7 @@ struct Url : public std::vector<Address> { *@exception Invalid if the url is invalid. */ QPID_COMMON_EXTERN void parse(const char* url); - QPID_COMMON_EXTERN void parse(const std::string& url) { parse(url.c_str()); } + QPID_COMMON_INLINE_EXTERN void parse(const std::string& url) { parse(url.c_str()); } /** Replace contesnts with parsed URL. Replace with empty URL if invalid. */ QPID_COMMON_EXTERN void parseNoThrow(const char* url); |