Revision: 23464
Author:   [email protected]
Date:     Wed Aug 27 15:14:54 2014 UTC
Log:      Version 3.29.20.2 (merged r23463)

Remove C++11-ism, until all bots support it.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/510833002
https://code.google.com/p/v8/source/detail?r=23464

Modified:
 /trunk/src/compiler/generic-algorithm.h
 /trunk/src/version.cc

=======================================
--- /trunk/src/compiler/generic-algorithm.h     Wed Aug 27 00:06:40 2014 UTC
+++ /trunk/src/compiler/generic-algorithm.h     Wed Aug 27 15:14:54 2014 UTC
@@ -43,7 +43,7 @@
     typedef typename Traits::Node Node;
     typedef typename Traits::Iterator Iterator;
     typedef std::pair<Iterator, Iterator> NodeState;
-    typedef std::stack<NodeState, ZoneDeque<NodeState>> NodeStateStack;
+    typedef std::stack<NodeState, ZoneDeque<NodeState> > NodeStateStack;
     NodeStateStack stack((ZoneDeque<NodeState>(zone)));
     BoolVector visited(Traits::max_id(graph), false, zone);
     Node* current = *root_begin;
=======================================
--- /trunk/src/version.cc       Wed Aug 27 13:18:36 2014 UTC
+++ /trunk/src/version.cc       Wed Aug 27 15:14:54 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     29
 #define BUILD_NUMBER      20
-#define PATCH_LEVEL       1
+#define PATCH_LEVEL       2
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to