diff options
| author | Michael Kubacki <michael.kubacki@microsoft.com> | 2026-06-12 20:08:06 -0400 |
|---|---|---|
| committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2026-06-30 21:42:50 +0000 |
| commit | f22b20e6aebd5a3c26c7dfab273e1aa954830ed8 (patch) | |
| tree | de9150381cb7caae61871e88ae96d73f3f340938 | |
| parent | 13df0bd4639675b12bb9fb00e297bfdbf3250f47 (diff) | |
| download | edk2-f22b20e6aebd5a3c26c7dfab273e1aa954830ed8.tar.gz edk2-f22b20e6aebd5a3c26c7dfab273e1aa954830ed8.zip | |
MdePkg: Generalize VS15 warning comment in ProcessorBind.h
The Ia32 and X64 ProcessorBind.h files had comments about VS2015, but
the warning is still relevant for newer VS versions, so update the
comments to be more general since VS2015 support was removed from the
repo recently.
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
| -rw-r--r-- | MdePkg/Include/Ia32/ProcessorBind.h | 4 | ||||
| -rw-r--r-- | MdePkg/Include/X64/ProcessorBind.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Include/Ia32/ProcessorBind.h b/MdePkg/Include/Ia32/ProcessorBind.h index def521c6ed..4c978e3212 100644 --- a/MdePkg/Include/Ia32/ProcessorBind.h +++ b/MdePkg/Include/Ia32/ProcessorBind.h @@ -89,13 +89,13 @@ SPDX-License-Identifier: BSD-2-Clause-Patent //
// This warning is for potentially uninitialized local variable, and it may cause false
-// positive issues in VS2015 build
+// positive issues in VS build
//
#pragma warning ( disable : 4701 )
//
// This warning is for potentially uninitialized local pointer variable, and it may cause
-// false positive issues in VS2015 build
+// false positive issues in VS build
//
#pragma warning ( disable : 4703 )
diff --git a/MdePkg/Include/X64/ProcessorBind.h b/MdePkg/Include/X64/ProcessorBind.h index 04983dd34c..51a5af459a 100644 --- a/MdePkg/Include/X64/ProcessorBind.h +++ b/MdePkg/Include/X64/ProcessorBind.h @@ -89,13 +89,13 @@ //
// This warning is for potentially uninitialized local variable, and it may cause false
-// positive issues in VS2015 build
+// positive issues in VS build
//
#pragma warning ( disable : 4701 )
//
// This warning is for potentially uninitialized local pointer variable, and it may cause
-// false positive issues in VS2015 build
+// false positive issues in VS build
//
#pragma warning ( disable : 4703 )
|
