Second thinko in #if/#else.
This commit is contained in:
parent
07fd0377e6
commit
323e326c7d
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2008-03-25 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
* src/misc/hash.hh: Second thinko in #if/#else.
|
||||
|
||||
2008-03-25 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
* src/misc/hash.hh: Thinko in #if/#else.
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ namespace spot
|
|||
/// \brief A hash function for strings.
|
||||
/// \ingroup hash_funcs
|
||||
/// @{
|
||||
# if (__GNUC__ == 4 && __GNUC_MINOR__ > 3) || __GNUC__ >= 4
|
||||
# if (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) || __GNUC__ > 4
|
||||
typedef std::tr1::hash<std::string> string_hash;
|
||||
# else // GCC < 4.3
|
||||
struct string_hash :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue