Reviewers: vogelheim,

Description:
Version 3.29.20.2 (merged r23463)

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

[email protected]
BUG=

Please review this at https://codereview.chromium.org/510833002/

SVN Base: https://v8.googlecode.com/svn/trunk

Affected files (+2, -2 lines):
  M src/compiler/generic-algorithm.h
  M src/version.cc


Index: src/compiler/generic-algorithm.h
diff --git a/src/compiler/generic-algorithm.h b/src/compiler/generic-algorithm.h index 3e1d96e4dab9c208627f741913a290ab16c0ed08..cd4984f68cef8c97d75c2e0ba81d3861607ff1db 100644
--- a/src/compiler/generic-algorithm.h
+++ b/src/compiler/generic-algorithm.h
@@ -43,7 +43,7 @@ class GenericGraphVisit {
     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;
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index 91af761c61482a314b69770eb60e8f98b2195494..d58e5ad27ba0be3145688d6b0433caa2706e98ed 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -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