aboutsummaryrefslogtreecommitdiff
path: root/third_party/chromium/base/template_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/chromium/base/template_util.h')
-rw-r--r--third_party/chromium/base/template_util.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/third_party/chromium/base/template_util.h b/third_party/chromium/base/template_util.h
index 7b61d24..0c3cac2 100644
--- a/third_party/chromium/base/template_util.h
+++ b/third_party/chromium/base/template_util.h
@@ -5,7 +5,6 @@
#ifndef BASE_TEMPLATE_UTIL_H_
#define BASE_TEMPLATE_UTIL_H_
-#include <stddef.h>
#include <type_traits>
#include "build/build_config.h"
@@ -16,18 +15,6 @@ template <class T> struct is_non_const_reference : std::false_type {};
template <class T> struct is_non_const_reference<T&> : std::true_type {};
template <class T> struct is_non_const_reference<const T&> : std::false_type {};
-namespace internal {
-
-// Types YesType and NoType are guaranteed such that sizeof(YesType) <
-// sizeof(NoType).
-typedef char YesType;
-
-struct NoType {
- YesType dummy[2];
-};
-
-} // namespace internal
-
} // namespace base
#endif // BASE_TEMPLATE_UTIL_H_