-
Notifications
You must be signed in to change notification settings - Fork 483
Fix type_traits.h
to address compiler warnings around using deprecated methods
#3384
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
Conversation
|
✅ Deploy Preview for opentelemetry-cpp-api-docs canceled.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3384 +/- ##
==========================================
+ Coverage 89.67% 89.69% +0.02%
==========================================
Files 211 211
Lines 6832 6832
==========================================
+ Hits 6126 6127 +1
+ Misses 706 705 -1 🚀 New features to boost your workflow:
|
#3355 should already fix this problem. |
@owent I spoke too soon. Looks like we are still seeing the same issue even with the suggested patch:
|
…d methods Signed-off-by: Rohit Agrawal <[email protected]>
Sorry, there were some mistakes before, could you please try the latest version of #3355 ? |
Yes, that worked. I'll close this one out. Thanks! |
Description
__has_trivial_copy
has been deprecated in favor of__is_trivially_assignable
. This is causing issues while bumping up the Open Telemetry dependency in Envoy from v1.29 => v1.20 [See This].Changes
We have created a patch in Envoy and are trying to upstream the fixes to get a clean patch-free build.