/usr/include/vmmlib/enable_if.hpp is in libvmmlib-dev 1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #ifndef __VMML__SFINAE__HPP__
#define __VMML__SFINAE__HPP__
#include <cstddef>
/**
* heavily inspired by boost::enable_if
* http://www.boost.org, file: boost/utility/enable_if.hpp,
* Copyright 2003 Jaakko Järvi, Jeremiah Willcock, Andrew Lumsdaine
*/
namespace vmml
{
template < bool condition, typename T = void >
struct enable_if { typedef T type; };
template< typename T >
struct enable_if< false, T > {};
} // namespace vmml
#endif
|