From 4e597c8fd5d604273266ea19a1074a2c870ba224 Mon Sep 17 00:00:00 2001 From: tsepez Date: Mon, 7 Nov 2016 15:16:01 -0800 Subject: Force compiler to deduce src type for checked_cast. Otherwise, we might be silently doing an unsafe cast before applying the check if the actual argument doesn't match the exact src type. Review-Url: https://codereview.chromium.org/2484953003 --- third_party/base/stl_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'third_party') diff --git a/third_party/base/stl_util.h b/third_party/base/stl_util.h index 0bf442c316..795414b59f 100644 --- a/third_party/base/stl_util.h +++ b/third_party/base/stl_util.h @@ -41,7 +41,7 @@ class FakeUniquePtr : public std::unique_ptr { // size_t size() method return values will be checked. template ResultType CollectionSize(const Collection& collection) { - return pdfium::base::checked_cast(collection.size()); + return pdfium::base::checked_cast(collection.size()); } // Track the addition of an object to a set, removing it automatically when -- cgit v1.2.3