From 0bb904497335a4e2d1bc89fdd64cf2a0ef1b2d08 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Wed, 7 Mar 2012 02:33:06 +0000 Subject: [PATCH] Remove an accidental cut/paste of a comment into the middle of a function. Dunno how I missed this when going through code... llvm-svn: 152196 --- llvm/include/llvm/ADT/Hashing.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/llvm/include/llvm/ADT/Hashing.h b/llvm/include/llvm/ADT/Hashing.h index 06f4ce215ec7..5efaa72705e3 100644 --- a/llvm/include/llvm/ADT/Hashing.h +++ b/llvm/include/llvm/ADT/Hashing.h @@ -419,8 +419,6 @@ hash_code hash_combine_range_impl(InputIteratorT first, InputIteratorT last) { 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);