diff options
author | Song, BinX <binx.song@intel.com> | 2017-11-10 12:11:02 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2017-11-14 18:18:43 +0800 |
commit | f826516d43367fce413332fd9cae6cea576fbfd0 (patch) | |
tree | cbcd2732ba159e48c8be0c9583c7146f11a27517 /MdeModulePkg/Include | |
parent | 2344d341e102b8a669914064201e48bcfba0b8f6 (diff) | |
download | edk2-f826516d43367fce413332fd9cae6cea576fbfd0.tar.gz edk2-f826516d43367fce413332fd9cae6cea576fbfd0.tar.bz2 edk2-f826516d43367fce413332fd9cae6cea576fbfd0.zip |
MdeModulePkg: Fix MSFT C4255 warning
V2:
Fix MSFT C4255 warning
V1:
Enable MSFT C4255 warning.
From MSDN:
Compiler Warning (level 4) C4255
function' : no function prototype given: converting '()' to '(void)'
The compiler did not find an explicit list of arguments to a function.
This warning is for the C compiler only.
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Bell Song <binx.song@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'MdeModulePkg/Include')
-rw-r--r-- | MdeModulePkg/Include/Library/PlatformVarCleanupLib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MdeModulePkg/Include/Library/PlatformVarCleanupLib.h b/MdeModulePkg/Include/Library/PlatformVarCleanupLib.h index a4691f0e65..1d642f62ba 100644 --- a/MdeModulePkg/Include/Library/PlatformVarCleanupLib.h +++ b/MdeModulePkg/Include/Library/PlatformVarCleanupLib.h @@ -32,6 +32,7 @@ typedef enum { VAR_ERROR_FLAG
EFIAPI
GetLastBootVarErrorFlag (
+ VOID
);
/**
|