From 3e3324b06b26b678cc541cb2f000611ad78355c4 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek@gmail.com" Date: Mon, 10 Sep 2012 19:46:19 +0000 Subject: Fix processor to build with clang R=mark at http://breakpad.appspot.com/451002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1035 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/processor/linked_ptr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processor/linked_ptr.h b/src/processor/linked_ptr.h index 1a4ef7d4..72fbba84 100644 --- a/src/processor/linked_ptr.h +++ b/src/processor/linked_ptr.h @@ -128,7 +128,7 @@ class linked_ptr { // Release ownership of the pointed object and returns it. // Sole ownership by this linked_ptr object is required. T* release() { - bool last = link_.depart(); + link_.depart(); T* v = value_; value_ = NULL; return v; -- cgit v1.2.1