From 9108ad211bf00d6e512af0919b743c1bf8b0eeb8 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Thu, 26 Jun 2014 16:01:46 -0700 Subject: Import Chromium base/numerics to resolve integer overflow. We'll use this for integer overflows going forward. BUG=382606 R=jam@chromium.org Review URL: https://codereview.chromium.org/349363005 --- third_party/template_util.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create 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 new file mode 100644 index 0000000000..d4508dd696 --- /dev/null +++ b/third_party/template_util.h @@ -0,0 +1,33 @@ +// 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