* src/misc/bareword.hh, src/misc/bddalloc.hh, src/misc/bddlt.hh,

src/misc/escape.hh, src/misc/freelist.hh, src/misc/hash.hh,
src/misc/hashfunc.hh, src/misc/minato.hh, src/misc/modgray.hh,
src/misc/random.hh, src/misc/version.hh, src/tgba/state.hh: More
Doxygen groups.
This commit is contained in:
Alexandre Duret-Lutz 2004-11-17 17:20:44 +00:00
parent 9bea364e40
commit 2a3d638a50
13 changed files with 52 additions and 10 deletions

View file

@ -25,6 +25,10 @@
namespace spot
{
/// \addtogroup hash_funcs Hashing functions
/// \ingroup misc_tools
/// @{
/// \brief Thomas Wang's 32 bit hash function.
///
/// Hash an integer amongst the integers.
@ -41,6 +45,7 @@ namespace spot
key ^= (key >> 16);
return key;
}
/// @}
}
#endif // SPOT_MISC_HASHFUNC_HH