Skip to content

Commit 0cdf521

Browse files
committed
rebased to master and resolved the conflicts
remove volatile since we made sure there's not sync issue any more
1 parent 0f68dd2 commit 0cdf521

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

lib/Runtime/Base/CompactCounters.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Js
1212
template<class T, typename CountT = T::CounterFields>
1313
struct CompactCounters
1414
{
15-
volatile uint8 fieldSize;
15+
uint8 fieldSize;
1616
#if DBG
1717
mutable bool bgThreadCallStarted;
1818
bool isCleaningUp;
@@ -26,7 +26,6 @@ namespace Js
2626
WriteBarrierPtr<int32> i32Fields;
2727
};
2828

29-
3029
CompactCounters()
3130
:fieldSize(1)
3231
#if DBG

0 commit comments

Comments
 (0)