Revision: 22719
Author: [email protected]
Date: Wed Jul 30 15:13:37 2014 UTC
Log: Fix more XCode build problems.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/425283002
http://code.google.com/p/v8/source/detail?r=22719
Modified:
/branches/bleeding_edge/src/compiler/generic-node-inl.h
=======================================
--- /branches/bleeding_edge/src/compiler/generic-node-inl.h Wed Jul 30
14:41:39 2014 UTC
+++ /branches/bleeding_edge/src/compiler/generic-node-inl.h Wed Jul 30
15:13:37 2014 UTC
@@ -34,26 +34,26 @@
template <class B, class S>
inline typename GenericNode<B, S>::Inputs::iterator
GenericNode<B, S>::Inputs::begin() {
- return GenericNode<B, S>::Inputs::iterator(this->node_, 0);
+ return typename GenericNode<B, S>::Inputs::iterator(this->node_, 0);
}
template <class B, class S>
inline typename GenericNode<B, S>::Inputs::iterator
GenericNode<B, S>::Inputs::end() {
- return GenericNode<B, S>::Inputs::iterator(this->node_,
- this->node_->InputCount());
+ return typename GenericNode<B, S>::Inputs::iterator(
+ this->node_, this->node_->InputCount());
}
template <class B, class S>
inline typename GenericNode<B, S>::Uses::iterator
GenericNode<B, S>::Uses::begin() {
- return GenericNode<B, S>::Uses::iterator(this->node_);
+ return typename GenericNode<B, S>::Uses::iterator(this->node_);
}
template <class B, class S>
inline typename GenericNode<B, S>::Uses::iterator
GenericNode<B, S>::Uses::end() {
- return GenericNode<B, S>::Uses::iterator();
+ return typename GenericNode<B, S>::Uses::iterator();
}
template <class B, class S>
--
--
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.