We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When compiling this library with no exceptions, the linker fails with the following:
multiple definition of `nonstd::expected_lite::detail::text(char const*)'
It appears the following function is the cause... Suggested fix - make the function static:
static
namespace detail { static bool text( char const * /*text*/ ) { return true; } }
The text was updated successfully, but these errors were encountered:
Prevent detail::text() to be multiply defined (#37, thanks to @jorticus)
4010807
martinmoene
No branches or pull requests
When compiling this library with no exceptions, the linker fails with the following:
It appears the following function is the cause...
Suggested fix - make the function
static
:The text was updated successfully, but these errors were encountered: