Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/lambda/detail/suppress_unused.hpp @ 16:2665513ce2d3
Add boost headers
author | Chris Cannam |
---|---|
date | Tue, 05 Aug 2014 11:11:38 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
15:663ca0da4350 | 16:2665513ce2d3 |
---|---|
1 // Boost Lambda Library suppress_unused.hpp ----------------------------- | |
2 // | |
3 // Copyright (C) 2009 Steven Watanabe | |
4 // | |
5 // Distributed under the Boost Software License, Version 1.0. (See | |
6 // accompanying file LICENSE_1_0.txt or copy at | |
7 // http://www.boost.org/LICENSE_1_0.txt) | |
8 // | |
9 // For more information, see www.boost.org | |
10 | |
11 // ------------------------------------------------------------ | |
12 | |
13 #ifndef BOOST_LAMBDA_SUPRESS_UNUSED_HPP | |
14 #define BOOST_LAMBDA_SUPRESS_UNUSED_HPP | |
15 | |
16 namespace boost { | |
17 namespace lambda { | |
18 namespace detail { | |
19 | |
20 template<class T> | |
21 inline void suppress_unused_variable_warnings(const T&) {} | |
22 | |
23 } | |
24 } | |
25 } | |
26 | |
27 #endif |