Commit 2bbf87af authored by Igor Sugak's avatar Igor Sugak Committed by Facebook Github Bot

fix asan build

Reviewed By: yfeldblum

Differential Revision: D6332075

fbshipit-source-id: 26a279b6ee4253a8be8f9f63e6900c2082a5486d
parent 5008d56a
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
using folly::dynamic; using folly::dynamic;
#ifndef FOLLY_SANITIZE_ADDRESS
// This test runs without any external dependencies, including json. // This test runs without any external dependencies, including json.
// This means that if there's a test failure, there's no way to print // 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 // a useful runtime representation of the folly::dynamic. We will
...@@ -31,7 +30,6 @@ using folly::dynamic; ...@@ -31,7 +30,6 @@ using folly::dynamic;
void dynamic::print_as_pseudo_json(std::ostream& out) const { void dynamic::print_as_pseudo_json(std::ostream& out) const {
out << "<folly::dynamic object of type " << type_ << ">"; out << "<folly::dynamic object of type " << type_ << ">";
} }
#endif
TEST(Dynamic, Default) { TEST(Dynamic, Default) {
dynamic obj; dynamic obj;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment