From 21f7a3c1134de902169de2f7f09e5bdbaf142127 Mon Sep 17 00:00:00 2001 From: Orvid King Date: Wed, 12 Aug 2015 13:37:02 -0700 Subject: [PATCH] Handle some scoping issues in Conv.h under MSVC Summary: No idea why these are the only two places it complains about, but it does. This just explicitly scopes them. Closes #253 Reviewed By: @yfeldblum Differential Revision: D2282985 Pulled By: @sgolemon --- folly/Conv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/folly/Conv.h b/folly/Conv.h index 05b60779..8dd466ae 100644 --- a/folly/Conv.h +++ b/folly/Conv.h @@ -815,7 +815,7 @@ typename std::enable_if= 3 typename detail::last_element::type >::type>::value>::type toAppend(const Ts&... vs) { - detail::toAppendStrImpl(vs...); + ::folly::detail::toAppendStrImpl(vs...); } /** @@ -834,7 +834,7 @@ typename std::enable_if< typename detail::last_element::type >::type>::value>::type toAppendFit(const Ts&... vs) { - detail::reserveInTarget(vs...); + ::folly::detail::reserveInTarget(vs...); toAppend(vs...); } -- 2.34.1