Skip to content

Commit

Permalink
Hooking up CQuicConnection to CNetworkConnection, ref #628
Browse files Browse the repository at this point in the history
  • Loading branch information
kaetemi committed Feb 24, 2023
1 parent 1d3e7df commit 4cf8e5e
Show file tree
Hide file tree
Showing 5 changed files with 224 additions and 75 deletions.
6 changes: 6 additions & 0 deletions nel/include/nel/misc/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,12 @@ class CAtomicEnum
}
};

#ifdef NL_CPP11
using CAtomicBool = CAtomicEnum<bool>;
#else
typedef CAtomicEnum<bool> CAtomicBool;
#endif

/// Hold a spinlock on an atomic flag
class CAtomicLockSpin
{
Expand Down
Loading

0 comments on commit 4cf8e5e

Please sign in to comment.