Fix type_traits.h to address compiler warnings around using deprecated methods#3384
Fix type_traits.h to address compiler warnings around using deprecated methods#3384agrawroh wants to merge 1 commit intoopen-telemetry:mainfrom
type_traits.h to address compiler warnings around using deprecated methods#3384Conversation
|
|
✅ 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 <rohit.agrawal@databricks.com>
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_copyhas 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.