Revision: 7278
Author:   [email protected]
Date:     Mon Mar 21 02:59:29 2011
Log:      Always inline BitCast.

Review URL: http://codereview.chromium.org/6688064
http://code.google.com/p/v8/source/detail?r=7278

Modified:
 /branches/bleeding_edge/src/utils.h

=======================================
--- /branches/bleeding_edge/src/utils.h Tue Feb  1 12:47:53 2011
+++ /branches/bleeding_edge/src/utils.h Mon Mar 21 02:59:29 2011
@@ -783,6 +783,9 @@
   }
 };

+template <class Dest, class Source>
+INLINE(Dest BitCast(const Source& source));
+
 template <class Dest, class Source>
 inline Dest BitCast(const Source& source) {
   return BitCastHelper<Dest, Source>::cast(source);

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to