-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
Fixed basic_json::diff and basic_json::patch not compiling with custom string type (#4134) #4137
base: develop
Are you sure you want to change the base?
Fixed basic_json::diff and basic_json::patch not compiling with custom string type (#4134) #4137
Conversation
@@ -36,10 +36,33 @@ class alt_string | |||
alt_string(size_t count, char chr): str_impl(count, chr) {} | |||
alt_string() = default; | |||
|
|||
template <typename...TParams> | |||
alt_string& append(TParams&& ...params) | |||
alt_string& append(std::size_t count, char ch) |
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.
The template version broke SFINAE-driven feature-detection in detail/string_concat.hpp
.
a410d07
to
51c6652
Compare
Amalgamated. |
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.
Please update from the develop branch as it has a working CI now.
4cd9a52
to
f4b7b90
Compare
f4b7b90
to
77ec6e4
Compare
77ec6e4
to
96129bd
Compare
🔴 Amalgamation check failed! 🔴The source code has not been amalgamated. @tomalakgeretkal |
Looks amalgamated here :( check-amalgamate works for me! |
You may be using a different version of astyle that produces different results. The check is using 3.1. We've seen that later versions produce different results. |
Note that this has yet to be amalgamated (waiting for #4083).