Skip to content

Commit

Permalink
ntassert change to be able to make debug builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
woachk committed Feb 20, 2019
1 parent b0b21a8 commit 0da035a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions render-only-sample/roscommon/ntassert.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ extern "C" {

#if _MSC_VER >= 1300
#if DBG

#ifndef NT_ASSERT
#define NT_ASSERT(_exp) \
((!(_exp)) ? \
(__annotation(L"Debug", L"AssertFail", L#_exp), \
Expand All @@ -186,7 +186,7 @@ extern "C" {
#define NT_VERIFY NT_ASSERT
#define NT_VERIFYMSG NT_ASSERTMSG
#define NT_VERIFYMSGW NT_ASSERTMSGW

#endif
#else // DBG

#ifndef NT_ASSERT
Expand Down

0 comments on commit 0da035a

Please sign in to comment.