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

Side by Side Diff: third_party/boost/boost/config/no_tr1/utility.hpp

Issue 113163: Add gmock into our dependencies. (Closed)
Patch Set: Making gmock work with windows. Requires adding boost. Created 11 years, 7 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
OLDNEW
(Empty)
1 // (C) Copyright John Maddock 2005.
2 // Use, modification and distribution are subject to the
3 // Boost Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 //
6 // The aim of this header is just to include <utility> but to do
7 // so in a way that does not result in recursive inclusion of
8 // the Boost TR1 components if boost/tr1/tr1/utility is in the
9 // include search path. We have to do this to avoid circular
10 // dependencies:
11 //
12
13 #ifndef BOOST_CONFIG_UTILITY
14 # define BOOST_CONFIG_UTILITY
15
16 # ifndef BOOST_TR1_NO_RECURSION
17 # define BOOST_TR1_NO_RECURSION
18 # define BOOST_CONFIG_NO_UTILITY_RECURSION
19 # endif
20
21 # include <utility>
22
23 # ifdef BOOST_CONFIG_NO_UTILITY_RECURSION
24 # undef BOOST_TR1_NO_RECURSION
25 # undef BOOST_CONFIG_NO_UTILITY_RECURSION
26 # endif
27
28 #endif
OLDNEW
« no previous file with comments | « third_party/boost/boost/config/no_tr1/memory.hpp ('k') | third_party/boost/boost/config/platform/aix.hpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698