[llvm-commits] [llvm] r158276 - /llvm/trunk/include/llvm/ADT/Hashing.h

Benjamin Kramer benny.kra at googlemail.com
Sat Jun 9 08:33:28 PDT 2012


Author: d0k
Date: Sat Jun  9 10:33:28 2012
New Revision: 158276

URL: http://llvm.org/viewvc/llvm-project?rev=158276&view=rev
Log:
Hashing: Remove outdated comment. Support for reserved hash values was removed in r151865.

Modified:
    llvm/trunk/include/llvm/ADT/Hashing.h

Modified: llvm/trunk/include/llvm/ADT/Hashing.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/Hashing.h?rev=158276&r1=158275&r2=158276&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/Hashing.h (original)
+++ llvm/trunk/include/llvm/ADT/Hashing.h Sat Jun  9 10:33:28 2012
@@ -76,10 +76,6 @@
 ///   using llvm::hash_value;
 ///   llvm::hash_code code = hash_value(x);
 /// \endcode
-///
-/// Also note that there are two numerical values which are reserved, and the
-/// implementation ensures will never be produced for real hash_codes. These
-/// can be used as sentinels within hashing data structures.
 class hash_code {
   size_t value;
 





More information about the llvm-commits mailing list