From: erik.corry@gmail.com Date: Fri, 3 Oct 2008 16:58:28 +0000 (+0000) Subject: Fix lint error. X-Git-Tag: upstream/4.7.83~25261 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b063df8c83aebd59169f32c1986fc79b0e4905e;p=platform%2Fupstream%2Fv8.git Fix lint error. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@432 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- 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));