Reviewers: ,

Message:
Committed patchset #1 manually as r18665 (tree was closed).

Description:
Fixed Windows build.

[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=18665

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

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -1 lines):
  M src/extensions/gc-extension.h


Index: src/extensions/gc-extension.h
diff --git a/src/extensions/gc-extension.h b/src/extensions/gc-extension.h
index adc79fe3398b3a8e5c2cc486bb6f68b74f923492..105c5ad5b72b4f01ed3712c2eec2613fc218449f 100644
--- a/src/extensions/gc-extension.h
+++ b/src/extensions/gc-extension.h
@@ -45,7 +45,8 @@ class GCExtension : public v8::Extension {

  private:
static const char* BuildSource(char* buf, size_t size, const char* fun_name) { - OS::SNPrintF(Vector<char>(buf, size), "native function %s();", fun_name);
+    OS::SNPrintF(Vector<char>(buf, static_cast<int>(size)),
+                 "native function %s();", fun_name);
     return buf;
   }



--
--
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.

Reply via email to