Skip to content

Commit

Permalink
Fixed incorrect preprocessor define check
Browse files Browse the repository at this point in the history
    * ACE/examples/APG/Timers/Timers.cpp:

(cherry picked from commit 2c1fa44)
  • Loading branch information
jwillemsen authored and mergify[bot] committed Oct 24, 2023
1 parent 76bffb4 commit c7d61bc
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 c7d61bc

Please sign in to comment.