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

Side by Side Diff: base/template_util.h

Issue 1604042: Improve error messages for bad SocketParams. (Closed)
Patch Set: Address davidben's comments and add to gyp file. Created 10 years, 6 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 unified diff | Download patch
« no previous file with comments | « base/base.gypi ('k') | net/socket/client_socket_pool.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef BASE_TEMPLATE_UTIL_H_
6 #define BASE_TEMPLATE_UTIL_H_
7
8 namespace base {
9
10 // template definitions from tr1
11
12 template<class T, T v>
13 struct integral_constant {
14 static const T value = v;
15 typedef T value_type;
16 typedef integral_constant<T, v> type;
17 };
18
19 template <class T, T v> const T integral_constant<T, v>::value;
20
21 typedef integral_constant<bool, true> true_type;
22 typedef integral_constant<bool, false> false_type;
23
24 template <class T> struct is_pointer : false_type {};
25 template <class T> struct is_pointer<T*> : true_type {};
26
27 } // namespace base
28
29 #endif
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | net/socket/client_socket_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698