diff options
author | Anderw Fish <afish@apple.com> | 2014-08-28 05:04:57 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-08-28 05:04:57 +0000 |
commit | ed395cfecd7abddf69fc124799817a5a12a991d4 (patch) | |
tree | e128c4c5fbf53dd9128ae9cecbcceb363862c9e5 /BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp | |
parent | 07355bd5ccf46cabb0ad05f1a058c1cfcbad1081 (diff) | |
download | edk2-platforms-ed395cfecd7abddf69fc124799817a5a12a991d4.tar.xz |
BaseTools: Fix clang C++ build error
Move argument default to constructor to remove clang warning.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Anderw Fish <afish@apple.com>
Reviewed-by: Gao, Liming <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15932 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp')
-rw-r--r-- | BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp b/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp index 6dfc118eea..376a454e02 100644 --- a/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp +++ b/BaseTools/Source/C/VfrCompile/VfrFormPkg.cpp @@ -95,7 +95,7 @@ SPendingAssign::GetKey ( }
CFormPkg::CFormPkg (
- IN UINT32 BufferSize = 4096
+ IN UINT32 BufferSize
)
{
CHAR8 *BufferStart;
|