Skip to content

Commit

Permalink
Merge pull request #18377 from ghalliday/issue31400
Browse files Browse the repository at this point in the history
HPCC-31400 Fix build error with newer versions of clang

Reviewed-By: Shamser Ahmed <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Mar 7, 2024
2 parents 8c8662c + 8c4c299 commit 4dc6bb7
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 4dc6bb7

Please sign in to comment.