You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(expected.hpp:936 and onward). This code never checks if T is not copyable which causes the issue in the first place. Definition rules of TL_EXPECTED_GCC49
doesn't do anything if clang is chosen as a compiler. I believe, adding rules for different clang versions (or at least some common denominator for features in clang and gcc) will fix this issue without breaking anything in the meantime.
The text was updated successfully, but these errors were encountered:
Hi,
The following snippet doesn't compile on clang 14.0.6
Produced error point to the following snippet in the source code
(expected.hpp:936 and onward). This code never checks if
T
is not copyable which causes the issue in the first place. Definition rules ofTL_EXPECTED_GCC49
doesn't do anything if clang is chosen as a compiler. I believe, adding rules for different clang versions (or at least some common denominator for features in clang and gcc) will fix this issue without breaking anything in the meantime.
The text was updated successfully, but these errors were encountered: