Skip to content

Commit

Permalink
Merge pull request #2147 from jwillemsen/jwi-elsif
Browse files Browse the repository at this point in the history
Fixed incorrect preprocessor define check
  • Loading branch information
jwillemsen authored Oct 24, 2023
2 parents 51e1e2c + 2c1fa44 commit db9274e
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 db9274e

Please sign in to comment.