aboutsummaryrefslogtreecommitdiff
path: root/src/processor/minidump.cc
diff options
context:
space:
mode:
authormmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-09-26 18:08:41 +0000
committermmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2007-09-26 18:08:41 +0000
commit0e6f5c95d7b791c2a7d2c4056d9746f3fa1ff166 (patch)
tree1d66250ca2eb2c2591907c0dacded37792740e8e /src/processor/minidump.cc
parentFix license boilerplate on these two files. Apparently these were missed (diff)
downloadbreakpad-0e6f5c95d7b791c2a7d2c4056d9746f3fa1ff166.tar.xz
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
Diffstat (limited to 'src/processor/minidump.cc')
-rw-r--r--src/processor/minidump.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processor/minidump.cc b/src/processor/minidump.cc
index 3548fb95..93d4eb05 100644
--- a/src/processor/minidump.cc
+++ b/src/processor/minidump.cc
@@ -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]);