From 449b3f6a0e55db57178b360607244c4675fbbb79 Mon Sep 17 00:00:00 2001 From: Kyungwoo Lee Date: Tue, 13 Jun 2017 11:37:14 -0700 Subject: [PATCH] Missing override keyword to DoPhase Commit migrated from https://github.com/dotnet/coreclr/commit/a075b765d3ce3707c50f0a87c5c6a8a7e4c65f68 --- src/coreclr/src/jit/lower.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/src/jit/lower.h b/src/coreclr/src/jit/lower.h index 73d2be6..cd1e5ef 100644 --- a/src/coreclr/src/jit/lower.h +++ b/src/coreclr/src/jit/lower.h @@ -28,7 +28,7 @@ public: m_lsra = (LinearScan*)lsra; assert(m_lsra); } - virtual void DoPhase(); + virtual void DoPhase() override; // If requiresOverflowCheck is false, all other values will be unset struct CastInfo -- 2.7.4