From 6c673585ed6bcb9e330ea5ab716f496c5d5f37b4 Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Mon, 23 Jun 2014 15:24:28 -0700 Subject: Revert "Import Chromium base/numerics to resolve integer overflow." This reverts commit d9713f05fdcecab8428d39034c6b84cd0bbd2920. This is breaking compile. --- third_party/template_util.h | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 third_party/template_util.h (limited to 'third_party/template_util.h') diff --git a/third_party/template_util.h b/third_party/template_util.h deleted file mode 100644 index d4508dd696..0000000000 --- a/third_party/template_util.h +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef BASE_TEMPLATE_UTIL_H_ -#define BASE_TEMPLATE_UTIL_H_ - -#include // For size_t. - -namespace base { - -template -struct integral_constant { - static const T value = v; - typedef T value_type; - typedef integral_constant type; -}; - -typedef integral_constant true_type; -typedef integral_constant false_type; - -template struct is_same : public false_type {}; -template struct is_same : true_type {}; - -template -struct enable_if {}; - -template -struct enable_if { typedef T type; }; - -} // namespace base - -#endif // BASE_TEMPLATE_UTIL_H_ -- cgit v1.2.3