From 2bbf87af3ab2fa277c9a9a81d907d754ccf28c50 Mon Sep 17 00:00:00 2001 From: Igor Sugak Date: Tue, 14 Nov 2017 22:42:28 -0800 Subject: [PATCH] fix asan build Reviewed By: yfeldblum Differential Revision: D6332075 fbshipit-source-id: 26a279b6ee4253a8be8f9f63e6900c2082a5486d --- folly/test/DynamicTest.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/folly/test/DynamicTest.cpp b/folly/test/DynamicTest.cpp index 407ed5fe..fe34904d 100644 --- a/folly/test/DynamicTest.cpp +++ b/folly/test/DynamicTest.cpp @@ -22,7 +22,6 @@ using folly::dynamic; -#ifndef FOLLY_SANITIZE_ADDRESS // This test runs without any external dependencies, including json. // This means that if there's a test failure, there's no way to print // a useful runtime representation of the folly::dynamic. We will @@ -31,7 +30,6 @@ using folly::dynamic; void dynamic::print_as_pseudo_json(std::ostream& out) const { out << ""; } -#endif TEST(Dynamic, Default) { dynamic obj; -- 2.34.1