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

Side by Side Diff: src/utils.h

Issue 5968004: Fix Solaris build
Patch Set: visibility=default is needed with solaris too Created 10 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 // Compile time assertion: sizeof(Dest) == sizeof(Source) 747 // Compile time assertion: sizeof(Dest) == sizeof(Source)
748 // A compile error here means your Dest and Source have different sizes. 748 // A compile error here means your Dest and Source have different sizes.
749 typedef char VerifySizesAreEqual[sizeof(Dest) == sizeof(Source) ? 1 : -1]; 749 typedef char VerifySizesAreEqual[sizeof(Dest) == sizeof(Source) ? 1 : -1];
750 750
751 Dest dest; 751 Dest dest;
752 memcpy(&dest, &source, sizeof(dest)); 752 memcpy(&dest, &source, sizeof(dest));
753 return dest; 753 return dest;
754 } 754 }
755 755
756 template <class Dest, class Source> 756 template <class Dest, class Source>
757 inline Dest BitCast(Source* source) { 757 inline Dest BitCast(Source*& source) {
758 return BitCast<Dest>(reinterpret_cast<uintptr_t>(source)); 758 return BitCast<Dest>(reinterpret_cast<uintptr_t>(source));
759 } 759 }
760 760
761 } } // namespace v8::internal 761 } } // namespace v8::internal
762 762
763 #endif // V8_UTILS_H_ 763 #endif // V8_UTILS_H_
OLDNEW
« no previous file with comments | « src/platform-solaris.cc ('k') | src/v8utils.h » ('j') | src/v8utils.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698