Skip to content

Commit

Permalink
Merge pull request #2149 from DOCGroup/mergify/bp/ace6tao2/pr-2147
Browse files Browse the repository at this point in the history
Fixed incorrect preprocessor define check (backport #2147)
  • Loading branch information
jwillemsen authored Oct 25, 2023
2 parents 76bffb4 + c7d61bc commit 1bf3ec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ACE/examples/APG/Timers/Timers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ int ACE_TMAIN (int, ACE_TCHAR *[])
#if defined(HEAP)

ACE_NEW_RETURN (timer_queue, ACE_Timer_Heap, -1);
#elsif defined(HASH)
#elif defined(HASH)

ACE_NEW_RETURN (timer_queue, ACE_Timer_Hash, -1);
#elsif defined(WHEEL)
#elif defined(WHEEL)

ACE_NEW_RETURN (timer_queue, ACE_Timer_Wheel, -1);
#else
Expand Down

0 comments on commit 1bf3ec8

Please sign in to comment.