Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
[Merge chakra-core/ChakraCore@a4f0672dd0] [MERGE #3550 @xiaoyinl] Fix…
Browse files Browse the repository at this point in the history
… illegal qualified name in ThreadContext.h (Fix #3507)

Merge pull request #3550 from xiaoyinl:fix3507

See #3507. This patch removes the redundant prefix
  • Loading branch information
chakrabot committed Aug 19, 2017
1 parent 1a928c9 commit a181998
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/chakrashim/core/lib/Runtime/Base/ThreadContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -1785,7 +1785,7 @@ extern void(*InitializeAdditionalProperties)(ThreadContext *threadContext);
class AutoDisableInterrupt
{
public:
AutoDisableInterrupt::AutoDisableInterrupt(ThreadContext *threadContext, bool explicitCompletion = true)
AutoDisableInterrupt(ThreadContext *threadContext, bool explicitCompletion = true)
: m_operationCompleted(false), m_interruptDisableState(false), m_threadContext(threadContext), m_explicitCompletion(explicitCompletion)
{
if (m_threadContext->HasInterruptPoller())
Expand All @@ -1794,7 +1794,7 @@ class AutoDisableInterrupt
m_threadContext->GetInterruptPoller()->SetDisabled(true);
}
}
AutoDisableInterrupt::~AutoDisableInterrupt()
~AutoDisableInterrupt()
{
if (m_threadContext->HasInterruptPoller())
{
Expand Down

0 comments on commit a181998

Please sign in to comment.