-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix undefined reference & and one warning #1206
Conversation
QtCreator (4.9) Clang Code Model (Clang 7) gives the warning:core.h:404:11: error: an attribute list cannot appear here core.h:116:24: note: expanded from macro 'FMT_NORETURN'
Reenabling Compiling and Linking as DLL.
6c3f86c
to
0aa7b73
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! Two minor comments, otherwise LGTM.
@@ -417,7 +417,7 @@ typedef basic_memory_buffer<char> memory_buffer; | |||
typedef basic_memory_buffer<wchar_t> wmemory_buffer; | |||
|
|||
/** A formatting error such as invalid format string. */ | |||
class format_error : public std::runtime_error { | |||
class FMT_API format_error : public std::runtime_error { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only the destructor needs to be marked with FMT_API
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was my first pull request, but then I got undefined reference to the vtable, which is not exported in that case. If you know how to export the vtable explicitly I will change it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, OK then.
@@ -2198,7 +2198,7 @@ class arg_formatter : public internal::arg_formatter_base<Range> { | |||
An error returned by an operating system or a language runtime, | |||
for example a file opening error. | |||
*/ | |||
class system_error : public std::runtime_error { | |||
class FMT_API system_error : public std::runtime_error { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
I agree that my contributions are licensed under the {fmt} license, and agree to future changes to the licensing.
Fixes #1205