Various minor changes to aid compiling with std14 (#182)

These changes make the code compile in clang10 with -std14.
This commit is contained in:
Matthew Parkinson
2020-05-07 15:02:31 +01:00
committed by GitHub
parent c899ee7ab2
commit a9cfc3a2b4
9 changed files with 13 additions and 11 deletions

View File

@@ -78,7 +78,7 @@ namespace snmalloc
/**
* List of callbacks to notify
*/
std::atomic<PalNotificationObject*> callbacks = nullptr;
std::atomic<PalNotificationObject*> callbacks{nullptr};
public:
/**