From 84fc09c9c921a31ac826c53e419d4ea61584f8a9 Mon Sep 17 00:00:00 2001 From: Krzysztof Kosi??ski Date: Tue, 2 Mar 2010 23:52:32 +0100 Subject: Use Boost unordeed containers instead of TR1 to minimize pain when using Apple compilers. (bzr r9129) --- src/util/hash.h | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/util/hash.h (limited to 'src/util') diff --git a/src/util/hash.h b/src/util/hash.h deleted file mode 100644 index d5abeff5a..000000000 --- a/src/util/hash.h +++ /dev/null @@ -1,41 +0,0 @@ -/** @file - * Hash function for various things - */ -/* Authors: - * Krzysztof KosiƄski - * - * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#ifndef SEEN_UTIL_HASH_H -#define SEEN_UTIL_HASH_H - -#include - -namespace std { -namespace tr1 { - -/** Hash function for Boost shared pointers */ -template -struct hash< boost::shared_ptr > : public std::unary_function, size_t> { - size_t operator()(boost::shared_ptr p) const { - return reinterpret_cast(p.get()); - } -}; - -} // namespace tr1 -} // namespace std - -#endif - -/* - Local Variables: - mode:c++ - c-file-style:"stroustrup" - c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) - indent-tabs-mode:nil - fill-column:99 - End: -*/ -// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : -- cgit v1.2.3