From 23a0f5318c50cdf3dce19e4de0c98fb5ae1c2618 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 7 Aug 2011 11:39:54 +0200 Subject: JANITORIAL: Remove trailing empty lines. --- common/algorithm.h | 1 - 1 file changed, 1 deletion(-) (limited to 'common/algorithm.h') diff --git a/common/algorithm.h b/common/algorithm.h index 00c0e1c98f..40ba605ebd 100644 --- a/common/algorithm.h +++ b/common/algorithm.h @@ -269,4 +269,3 @@ T gcd(T a, T b) { } // End of namespace Common #endif - -- cgit v1.2.3 From 84220d2ca05707f22a0242b1745caf0b657237a3 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sat, 6 Aug 2011 09:47:19 +0200 Subject: COMMON: Remove superfluous Common:: qualifiers. --- common/algorithm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/algorithm.h') diff --git a/common/algorithm.h b/common/algorithm.h index 40ba605ebd..e7ccef4840 100644 --- a/common/algorithm.h +++ b/common/algorithm.h @@ -226,12 +226,12 @@ void sort(T first, T last, StrictWeakOrdering comp) { */ template void sort(T *first, T *last) { - sort(first, last, Common::Less()); + sort(first, last, Less()); } template void sort(T first, T last) { - sort(first, last, Common::Less()); + sort(first, last, Less()); } // MSVC is complaining about the minus operator being applied to an unsigned type -- cgit v1.2.3