From 4b063df8c83aebd59169f32c1986fc79b0e4905e Mon Sep 17 00:00:00 2001 From: "erik.corry@gmail.com" Date: Fri, 3 Oct 2008 16:58:28 +0000 Subject: [PATCH] Fix lint error. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@432 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/globals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/globals.h b/src/globals.h index 26edda2..34baa0d 100644 --- a/src/globals.h +++ b/src/globals.h @@ -491,7 +491,7 @@ template inline Dest bit_cast(const Source& source) { // Compile time assertion: sizeof(Dest) == sizeof(Source) // A compile error here means your Dest and Source have different sizes. - typedef char VerifySizesAreEqual [sizeof(Dest) == sizeof(Source) ? 1 : -1]; + typedef char VerifySizesAreEqual[sizeof(Dest) == sizeof(Source) ? 1 : -1]; Dest dest; memcpy(&dest, &source, sizeof(dest)); -- 2.7.4