Revision: 17077
Author: [email protected]
Date: Wed Oct 2 12:16:57 2013 UTC
Log: Fix improper usage of V8_OVERRIDE.
[email protected]
Review URL: https://codereview.chromium.org/25715002
http://code.google.com/p/v8/source/detail?r=17077
Modified:
/branches/bleeding_edge/src/hydrogen-instructions.h
=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.h Wed Oct 2 11:43:41
2013 UTC
+++ /branches/bleeding_edge/src/hydrogen-instructions.h Wed Oct 2 12:16:57
2013 UTC
@@ -1185,7 +1185,7 @@
virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
- virtual bool KnownSuccessorBlock(HBasicBlock** block) V8_OVERRIDE {
+ virtual bool KnownSuccessorBlock(HBasicBlock** block) {
*block = NULL;
return false;
}
@@ -1323,7 +1323,7 @@
return new(zone) HDeoptimize(reason, type, unreachable_continuation);
}
- virtual bool KnownSuccessorBlock(HBasicBlock** block) {
+ virtual bool KnownSuccessorBlock(HBasicBlock** block) V8_OVERRIDE {
*block = NULL;
return true;
}
--
--
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/groups/opt_out.