Chris Jefferson noted many places where function calls needed to be qualified (thanks Chris).
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@125510 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/vector b/include/vector
index 7c0fc70..f067743 100644
--- a/include/vector
+++ b/include/vector
@@ -1101,7 +1101,7 @@
if (__n <= capacity())
{
size_type __s = size();
- _STD::fill_n(this->__begin_, min(__n, __s), __u);
+ _STD::fill_n(this->__begin_, _STD::min(__n, __s), __u);
if (__n > __s)
__construct_at_end(__n - __s, __u);
else