Fix a pair of non-ascii quotes that made their way into AsyncSocket
authorChristopher Dykes <cdykes@fb.com>
Thu, 4 Aug 2016 22:40:16 +0000 (15:40 -0700)
committerFacebook Github Bot 8 <facebook-github-bot-8-bot@fb.com>
Thu, 4 Aug 2016 22:54:24 +0000 (15:54 -0700)
Summary: Because the lint error was annoying me.

Reviewed By: yfeldblum

Differential Revision: D3671252

fbshipit-source-id: 2962db7616077f531e64c6f2b26ad708c7adf6ed

folly/io/async/AsyncSocket.cpp

index dd0caa37609a7f2c13567d6754e7152f7176c7ef..f74fe9202203ea0156c111bfba6c58163c2148c9 100644 (file)
@@ -663,8 +663,7 @@ void AsyncSocket::writeChain(WriteCallback* callback, unique_ptr<IOBuf>&& buf,
   constexpr size_t kSmallSizeMax = 64;
   size_t count = buf->countChainElements();
   if (count <= kSmallSizeMax) {
-
-    // suppress "warning: variable length array ‘vec’ is used [-Wvla]"
+    // suppress "warning: variable length array 'vec' is used [-Wvla]"
     FOLLY_PUSH_WARNING;
     FOLLY_GCC_DISABLE_WARNING(vla);
     iovec vec[BOOST_PP_IF(FOLLY_HAVE_VLA, count, kSmallSizeMax)];