aboutsummaryrefslogtreecommitdiff
path: root/third_party/chromium/base/template_util.h
blob: 0c3cac22711d3c86a4592b12c6aaf5852e412866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 <type_traits>

#include "build/build_config.h"

namespace base {

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 base

#endif  // BASE_TEMPLATE_UTIL_H_