Skip to content

Commit dd8b53c

Browse files
Avoid illegal use of qualified name in member decls
Fixes #4596
1 parent 105957f commit dd8b53c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Runtime/PlatformAgnostic/Platform/Windows/HiResTimer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace DateTime
2222
double currentRandomWindowScaled = 0.0;
2323
ULONGLONG currentQuantizedQpc = 0;
2424
public:
25-
JitterManager::JitterManager()
25+
JitterManager()
2626
{
2727
// NOTE: We could cache the (1000/frequency) operation, as a double,
2828
// that is used later to convert from seconds to milliseconds so that
@@ -68,7 +68,7 @@ namespace DateTime
6868
quantizationToSelectedScaleFactor = max(quantizationToSelectedScaleFactor, 1.0);
6969
}
7070

71-
uint64 JitterManager::QuantizedQPC(uint64 qpc)
71+
uint64 QuantizedQPC(uint64 qpc)
7272
{
7373
// Due to further analysis of some attacks, we're jittering on a more granular
7474
// frequency of as much as a full millisecond.

0 commit comments

Comments
 (0)