commit | bc99bb6bf78ee7466848573169a18d1fe54319c9 | [log] [tgz] |
---|---|---|
author | Corentin Wallez <cwallez@chromium.org> | Thu May 14 17:42:20 2015 -0400 |
committer | Corentin Wallez <cwallez@chromium.org> | Tue May 19 14:37:42 2015 +0000 |
tree | 45bdef3a0946aee2b0bb6cda1388f924b7381a1a | |
parent | 0326a3acf8a8c0651489b69899ea6fb6371ca214 [diff] [blame] |
Enable more warnings on GCC and clang BUG=angleproject:892 Change-Id: I74ca341f29b245f698d1e1ad43149a91db46817f Reviewed-on: https://chromium-review.googlesource.com/271411 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>
diff --git a/src/compiler/translator/InitializeVariables.h b/src/compiler/translator/InitializeVariables.h index 4a81266..2e87611 100644 --- a/src/compiler/translator/InitializeVariables.h +++ b/src/compiler/translator/InitializeVariables.h
@@ -26,8 +26,8 @@ typedef TVector<InitVariableInfo> InitVariableInfoList; InitializeVariables(const InitVariableInfoList &vars) - : mCodeInserted(false), - mVariables(vars) + : mVariables(vars), + mCodeInserted(false) { }