/usr/include/osl/stl/hash.h is in libosl-dev 0.6.0-3.1.
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 24 25 26 27 28 29 30 31 32 33 34 35 36 | /* hash.h
*/
#ifndef STL_HASH_H
#define STL_HASH_H
#if (__GNUC__ >= 4 && __GNUC_MINOR__ >=3)
# include <tr1/functional>
#else
# include <boost/functional/hash_fwd.hpp>
#endif
namespace osl
{
namespace stl
{
template <class T>
struct hash;
#if (__GNUC__ >= 4 && __GNUC_MINOR__ >=3)
template <class T>
struct hash : public std::tr1::hash<T>
{
};
#else
template <class T>
struct hash : public boost::hash<T>
{
};
#endif
} // namespace stl
} // namespace stl
#endif /* STL_HASH_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|