From da873b7bd9cc2b01861e8e2b3f35b1da30be6945 Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Fri, 18 Nov 2016 20:56:29 -0800 Subject: [PATCH] Don't explicitly alias dynamic after using the entire folly namespace Summary: Because, to the best of my knowledge, MSVC is quite right to claim it doesn't know which `dynamic` everyone keeps referring to. Is it `folly::dynamic` or `::dynamic`? Reviewed By: yfeldblum Differential Revision: D4209535 fbshipit-source-id: 63322a8f960954e1a63fe5c9a4a5d9395c7827d9 --- folly/experimental/test/DynamicParserTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/folly/experimental/test/DynamicParserTest.cpp b/folly/experimental/test/DynamicParserTest.cpp index 3c18f47b..72dbd5a7 100644 --- a/folly/experimental/test/DynamicParserTest.cpp +++ b/folly/experimental/test/DynamicParserTest.cpp @@ -28,7 +28,6 @@ #include using namespace folly; -using dynamic = folly::dynamic; // NB Auto-conversions are exercised by all the tests, there's not a great // reason to test all of them explicitly, since any uncaught bugs will fail -- 2.34.1