Skip to content

Commit

Permalink
Merge pull request #16704 from RSalman/config-del-fix
Browse files Browse the repository at this point in the history
Fix DDR Compilation of "gcddrstructs.ic"
  • Loading branch information
pshipton authored Feb 10, 2023
2 parents 66871c2 + 558445a commit c5c7b9a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions runtime/gc_glue_java/ConfigurationDelegate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class MM_ConfigurationDelegate
* Member data and types
*/
private:
uintptr_t _maximumDefaultNumberOfGCThreads = 64;
uintptr_t _maximumDefaultNumberOfGCThreads;
const MM_GCPolicy _gcPolicy;

protected:
Expand Down Expand Up @@ -364,8 +364,9 @@ class MM_ConfigurationDelegate
/**
* Constructor.
*/
MM_ConfigurationDelegate(MM_GCPolicy gcPolicy)
: _gcPolicy(gcPolicy)
MM_ConfigurationDelegate(MM_GCPolicy gcPolicy) :
_maximumDefaultNumberOfGCThreads(64)
, _gcPolicy(gcPolicy)
{}
};

Expand Down

0 comments on commit c5c7b9a

Please sign in to comment.