forked from crow-misia/libwebrtc-bin
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to 106.0.5249.91 version (#11)
Co-authored-by: rogurotus <[email protected]>
- Loading branch information
1 parent
4c93810
commit ba74672
Showing
4 changed files
with
18 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/src/third_party/abseil-cpp/absl/types/internal/optional.h b/src/third_party/abseil-cpp/absl/types/internal/optional.h | ||
index 6ed0c669..681acb7a 100644 | ||
--- a/src/third_party/abseil-cpp/absl/types/internal/optional.h | ||
+++ b/src/third_party/abseil-cpp/absl/types/internal/optional.h | ||
@@ -179,8 +179,8 @@ class optional_data_base : public optional_data_dtor_base<T> { | ||
// Also, we should be checking is_trivially_copyable here, which is not | ||
// supported now, so we use is_trivially_* traits instead. | ||
template <typename T, | ||
- bool unused = absl::is_trivially_copy_constructible<T>::value&& | ||
- absl::is_trivially_copy_assignable<typename std::remove_cv< | ||
+ bool unused = std::is_trivially_copy_constructible<T>::value&& | ||
+ std::is_trivially_copy_assignable<typename std::remove_cv< | ||
T>::type>::value&& std::is_trivially_destructible<T>::value> | ||
class optional_data; | ||
|
This file was deleted.
Oops, something went wrong.