From: Chandler Carruth Date: Wed, 7 Mar 2012 02:33:06 +0000 (+0000) Subject: Remove an accidental cut/paste of a comment into the middle of X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=344224b3a34bda62bea86c06807584ec7558e157;p=oota-llvm.git Remove an accidental cut/paste of a comment into the middle of a function. Dunno how I missed this when going through code... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152196 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/Hashing.h b/include/llvm/ADT/Hashing.h index 06f4ce215ec..5efaa72705e 100644 --- a/include/llvm/ADT/Hashing.h +++ b/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);