Commit df680df3 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Fix missing qualification in FOLLY_SAFE_DCHECK macro

Summary: [Folly] Fix missing qualification in `FOLLY_SAFE_DCHECK` macro.

Reviewed By: nbronson

Differential Revision: D17747688

fbshipit-source-id: 1bab5770891c900252f767252b5d7769e209bcb1
parent 8ea70e3d
......@@ -40,7 +40,7 @@
* only does async-signal-safe calls.
*/
#define FOLLY_SAFE_DCHECK(expr, msg) \
FOLLY_SAFE_CHECK_IMPL(!folly::kIsDebug || (expr), (expr), (msg))
FOLLY_SAFE_CHECK_IMPL(!::folly::kIsDebug || (expr), (expr), (msg))
namespace folly {
namespace detail {
......
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