From: Igor Sugak Date: Wed, 15 Nov 2017 06:42:28 +0000 (-0800) Subject: fix asan build X-Git-Tag: v2017.11.20.00~12 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2bbf87af3ab2fa277c9a9a81d907d754ccf28c50;p=folly.git fix asan build Reviewed By: yfeldblum Differential Revision: D6332075 fbshipit-source-id: 26a279b6ee4253a8be8f9f63e6900c2082a5486d --- 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;