mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-02-28 19:02:57 +00:00
Allow Breakpad processor library to build on Solaris with the native Sun
toolchain (#142). Patch by Alfred Peng. r=me. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@213 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -106,7 +106,7 @@ static inline void Swap(u_int32_t* value) {
|
||||
}
|
||||
|
||||
|
||||
static void Swap(u_int64_t* value) {
|
||||
static inline void Swap(u_int64_t* value) {
|
||||
u_int32_t* value32 = reinterpret_cast<u_int32_t*>(value);
|
||||
Swap(&value32[0]);
|
||||
Swap(&value32[1]);
|
||||
|
||||
Reference in New Issue
Block a user