summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAl Patrick <apatrick@chromium.org>2013-07-26 15:23:48 -0700
committerAl Patrick <apatrick@chromium.org>2013-07-26 15:23:48 -0700
commit07dd3ea661112e21722445359b61a7b331e3146f (patch)
tree28fb9b00823e71e6651b834231022080c2e6ee17
parentc21954a911d49123aec1cb9207e0af7a8eb0f76b (diff)
downloadangle_dx11-07dd3ea661112e21722445359b61a7b331e3146f.tar.gz
Remove use of C++11 feature (auto keyword).
BUG=452 Review URL: https://codereview.appspot.com/11953043
-rw-r--r--src/common/version.h2
-rw-r--r--src/compiler/ParseHelper.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/version.h b/src/common/version.h
index 6139a5fe..68cf494b 100644
--- a/src/common/version.h
+++ b/src/common/version.h
@@ -1,7 +1,7 @@
#define MAJOR_VERSION 1
#define MINOR_VERSION 2
#define BUILD_VERSION 0
-#define BUILD_REVISION 2428
+#define BUILD_REVISION 2429
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
diff --git a/src/compiler/ParseHelper.cpp b/src/compiler/ParseHelper.cpp
index 0fd62530..a4787a1c 100644
--- a/src/compiler/ParseHelper.cpp
+++ b/src/compiler/ParseHelper.cpp
@@ -895,7 +895,7 @@ bool TParseContext::supportsExtension(const char* extension)
bool TParseContext::isExtensionEnabled(const char* extension) const
{
const TExtensionBehavior& extbehavior = extensionBehavior();
- auto iter = extbehavior.find(extension);
+ TExtensionBehavior::const_iterator iter = extbehavior.find(extension);
if (iter == extbehavior.end())
{