From 1df13fed15324d3f9e815b84588a758f67834d7f Mon Sep 17 00:00:00 2001 From: "ivan.penkov@gmail.com" Date: Fri, 28 Feb 2014 10:21:20 +0000 Subject: Fixing compiler warnings: - Building Breakpad in Xcode with arm64 architecture. - iOS Patches provided by: Ian Hickson and Greg Vance. R=mark@chromium.org Review URL: https://breakpad.appspot.com/1184003 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1286 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/ios/Breakpad.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client/ios') diff --git a/src/client/ios/Breakpad.mm b/src/client/ios/Breakpad.mm index 65bf51e9..66125597 100644 --- a/src/client/ios/Breakpad.mm +++ b/src/client/ios/Breakpad.mm @@ -98,7 +98,7 @@ class ProtectedMemoryLocker { : mutex_(mutex), allocator_(allocator) { // Lock the mutex - int rv = pthread_mutex_lock(mutex_); + __attribute__((unused)) int rv = pthread_mutex_lock(mutex_); assert(rv == 0); // Unprotect the memory @@ -110,7 +110,7 @@ class ProtectedMemoryLocker { allocator_->Protect(); // Then unlock the mutex - int rv = pthread_mutex_unlock(mutex_); + __attribute__((unused)) int rv = pthread_mutex_unlock(mutex_); assert(rv == 0); }; -- cgit v1.2.1