[llvm-commits] [llvm] r152196 - /llvm/trunk/include/llvm/ADT/Hashing.h
Chandler Carruth
chandlerc at gmail.com
Tue Mar 6 18:33:07 PST 2012
Author: chandlerc
Date: Tue Mar 6 20:33:06 2012
New Revision: 152196
URL: http://llvm.org/viewvc/llvm-project?rev=152196&view=rev
Log:
Remove an accidental cut/paste of a comment into the middle of
a function. Dunno how I missed this when going through code...
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=152196&r1=152195&r2=152196&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/Hashing.h (original)
+++ llvm/trunk/include/llvm/ADT/Hashing.h Tue Mar 6 20:33:06 2012
@@ -419,8 +419,6 @@
while (first != last && store_and_advance(buffer_ptr, buffer_end,
get_hashable_data(*first)))
++first;
-/// \brief Metafunction that determines whether the given type is an integral
-/// type.
if (first == last)
return hash_short(buffer, buffer_ptr - buffer, seed);
assert(buffer_ptr == buffer_end);
More information about the llvm-commits
mailing list