Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Remove mentions of Rotor from codebase #20298

Merged
merged 16 commits into from
Oct 9, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove reference to rotor from debugreturn.h
This is the only file the defines these macros, so there is no need to
undef them first.
  • Loading branch information
AustinWise committed Oct 8, 2018
commit 33802192f8bd6c20abc078f1aa395d8be511cbe0
4 changes: 0 additions & 4 deletions src/inc/debugreturn.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,6 @@ typedef __SafeToReturn __ReturnOK;
#define DEBUG_ASSURE_NO_RETURN_BEGIN(arg) { typedef __YouCannotUseAReturnStatementHere __ReturnOK; if (0 && __ReturnOK::used()) { } else {
#define DEBUG_ASSURE_NO_RETURN_END(arg) } }

// rotor_pal.h defaulted these to empty macros; this file redefines them
#undef DEBUG_OK_TO_RETURN_BEGIN
#undef DEBUG_OK_TO_RETURN_END

#define DEBUG_OK_TO_RETURN_BEGIN(arg) { typedef __SafeToReturn __ReturnOK; if (0 && __ReturnOK::used()) { } else {
#define DEBUG_OK_TO_RETURN_END(arg) } }

Expand Down