diff options
author | dmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2014-02-24 21:35:40 +0000 |
---|---|---|
committer | dmaclach <dmaclach@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2014-02-24 21:35:40 +0000 |
commit | 47585f7deea1e18623a54bb6f9a629604563dc27 (patch) | |
tree | bd6e710fcefe00a2e1b576aee4549d166ba0038e /src/client/mac/Framework | |
parent | Fix up ~14 warnings about 'Implicit conversion loses integer precision' on iOS. (diff) | |
download | breakpad-47585f7deea1e18623a54bb6f9a629604563dc27.tar.xz |
Fixup breakpad compile for Xcode 5.1 iOS release
(https://breakpad.appspot.com/1154002/)
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1282 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/mac/Framework')
-rw-r--r-- | src/client/mac/Framework/Breakpad.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/mac/Framework/Breakpad.mm b/src/client/mac/Framework/Breakpad.mm index 0b3fa715..fe592bf3 100644 --- a/src/client/mac/Framework/Breakpad.mm +++ b/src/client/mac/Framework/Breakpad.mm @@ -102,7 +102,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 @@ -114,7 +114,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); }; |