Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Unified Diff: webrtc/base/template_util.h

Issue 1291543006: Update Bind to match its comments and always capture by value. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: CR comments, undid android encoder/decoder change Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/base/template_util.h
diff --git a/webrtc/base/template_util.h b/webrtc/base/template_util.h
index 86e541d8cf2203b456bd278680e59ced4d28a63b..31464cf35db5d4047a7b8d95cb50246b8a23c0df 100644
--- a/webrtc/base/template_util.h
+++ b/webrtc/base/template_util.h
@@ -48,6 +48,19 @@ template <class T> struct is_non_const_reference<const T&> : false_type {};
template <class T> struct is_void : false_type {};
template <> struct is_void<void> : true_type {};
+template <class T>
+struct remove_reference {
+ typedef T type;
+};
+template <class T>
+struct remove_reference<T&> {
+ typedef T type;
+};
+template <class T>
+struct remove_reference<T&&> {
+ typedef T type;
+};
+
namespace internal {
// Types YesType and NoType are guaranteed such that sizeof(YesType) <

Powered by Google App Engine
This is Rietveld 408576698