Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Unified Diff: src/builtins.cc

Issue 551047: Fix ARM build. (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.cc
diff --git a/src/builtins.cc b/src/builtins.cc
index f86e27a0c2cbc5dd536530134fe1235f1a2263de..9db223039fa3aa90cd5f4c8535733811af4d2186 100644
--- a/src/builtins.cc
+++ b/src/builtins.cc
@@ -42,6 +42,9 @@ namespace {
template <BuiltinExtraArguments extra_args>
class BuiltinArguments : public Arguments {
public:
+ BuiltinArguments(int length, Object** arguments)
+ : Arguments(length, arguments) { }
+
Object*& operator[] (int index) {
ASSERT(index < length());
return Arguments::operator[](index);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698