Skip to content

Commit

Permalink
HPCC-31400 Fix build error with newer versions of clang
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Mar 6, 2024
1 parent d3a5014 commit 8c4c299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/jhtree/jhtree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ class CNodeCacheEntry : public CInterface
public:
CriticalSection cs;
private:
std::atomic<const CJHTreeNode *> node = nullptr;
std::atomic<const CJHTreeNode *> node{nullptr};
public:
~CNodeCacheEntry()
{
Expand Down

0 comments on commit 8c4c299

Please sign in to comment.