breakpad: Remove semicolons, iOS edition.
Bug: chromium:926235 Change-Id: I237e7b7d89e5746beea80754675a232c881f25f6 Reviewed-on: https://chromium-review.googlesource.com/c/1487336 Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
parent
30153b4eb5
commit
2853d21e20
2 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ class ProtectedMemoryLocker {
|
|||
// Then unlock the mutex
|
||||
__attribute__((unused)) int rv = pthread_mutex_unlock(mutex_);
|
||||
assert(rv == 0);
|
||||
};
|
||||
}
|
||||
|
||||
private:
|
||||
ProtectedMemoryLocker();
|
||||
|
|
|
@ -42,7 +42,7 @@ namespace google_breakpad {
|
|||
class FileID {
|
||||
public:
|
||||
FileID(const char *path);
|
||||
~FileID() {};
|
||||
~FileID() {}
|
||||
|
||||
// Load the identifier for the file path specified in the constructor into
|
||||
// |identifier|. Return false if the identifier could not be created for the
|
||||
|
|
Loading…
Reference in a new issue