summaryrefslogtreecommitdiffstats
path: root/sandbox/win
diff options
context:
space:
mode:
authorthakis <thakis@chromium.org>2015-12-04 17:11:47 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-05 01:12:35 +0000
commitb10a7ada601a07866d50cd13c6af4605e316152e (patch)
tree6971f877351f00d39ea76c62e760db4826fc28aa /sandbox/win
parent7a61e826d13ad9093ff81b6f566baeacd9494254 (diff)
downloadchromium_src-b10a7ada601a07866d50cd13c6af4605e316152e.zip
chromium_src-b10a7ada601a07866d50cd13c6af4605e316152e.tar.gz
chromium_src-b10a7ada601a07866d50cd13c6af4605e316152e.tar.bz2
clang/win: Enable -Wunused-value completely.
BUG=505318 NOTRY=true Review URL: https://codereview.chromium.org/1500783002 Cr-Commit-Position: refs/heads/master@{#363327}
Diffstat (limited to 'sandbox/win')
-rw-r--r--sandbox/win/src/sid.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/win/src/sid.cc b/sandbox/win/src/sid.cc
index 261605d..19c645b 100644
--- a/sandbox/win/src/sid.cc
+++ b/sandbox/win/src/sid.cc
@@ -16,7 +16,7 @@ Sid::Sid(WELL_KNOWN_SID_TYPE type) {
DWORD size_sid = SECURITY_MAX_SID_SIZE;
BOOL result = ::CreateWellKnownSid(type, NULL, sid_, &size_sid);
DCHECK(result);
- DBG_UNREFERENCED_LOCAL_VARIABLE(result);
+ (void)result;
}
const SID *Sid::GetPSID() const {