From d3297abfafcf8f89de5816145afc955b0710c051 Mon Sep 17 00:00:00 2001 From: Sergey Andreenko Date: Wed, 15 Nov 2017 20:36:41 -0800 Subject: [PATCH] don't use Compiler:: if we are currently in this namescape. (#15045) I was confused that we were outside of Compiler:: --- src/jit/gentree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/gentree.cpp b/src/jit/gentree.cpp index 3a543c9..c393fe2 100644 --- a/src/jit/gentree.cpp +++ b/src/jit/gentree.cpp @@ -10576,7 +10576,7 @@ int Compiler::gtGetLclVarName(unsigned lclNum, char* buf, unsigned buf_remaining const char* ilName = nullptr; unsigned ilNum = 0; - Compiler::gtGetLclVarNameInfo(lclNum, &ilKind, &ilName, &ilNum); + gtGetLclVarNameInfo(lclNum, &ilKind, &ilName, &ilNum); if (ilName != nullptr) { -- 2.7.4