Skip to content

Commit

Permalink
Remove !defined(NDEBUG) in InteractiveDebugging
Browse files Browse the repository at this point in the history
Summary: Remove !defined(NDEBUG) so the interactive debugging methods can be called in code

Reviewed By: jimmycFB

Differential Revision: D54822895

fbshipit-source-id: 999a7aad6b7808f64a53d649941160afd860b5b5
  • Loading branch information
itang00 authored and facebook-github-bot committed Mar 18, 2024
1 parent af12e2f commit e7fc7b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libredex/InteractiveDebugging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include "Macros.h"

#if !defined(NDEBUG) && !IS_WINDOWS
#if !IS_WINDOWS

#include "InteractiveDebugging.h"

Expand Down
2 changes: 1 addition & 1 deletion libredex/InteractiveDebugging.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "Macros.h"
#include <stddef.h>

#if !defined(NDEBUG) && !IS_WINDOWS
#if !IS_WINDOWS

namespace cfg {
class ControlFlowGraph;
Expand Down

0 comments on commit e7fc7b9

Please sign in to comment.