Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: third_party/lzma_sdk/LzmaEnc.c

Issue 1218903002: win clang: don't disable -Wself-assign (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/lzma_sdk/LzmaEnc.c
diff --git a/third_party/lzma_sdk/LzmaEnc.c b/third_party/lzma_sdk/LzmaEnc.c
index cf131388a448f23cd50f27d7d75d0693de41839b..17d7f3892abbdbbe5e15e17cfb7c59fc55f92f80 100644
--- a/third_party/lzma_sdk/LzmaEnc.c
+++ b/third_party/lzma_sdk/LzmaEnc.c
@@ -2077,8 +2077,6 @@ void LzmaEnc_Finish(CLzmaEncHandle pp)
CLzmaEnc *p = (CLzmaEnc *)pp;
if (p->mtMode)
MatchFinderMt_ReleaseStream(&p->matchFinderMt);
- #else
- pp = pp;
Nico 2015/06/29 23:51:02 likewise, (void)pp
#endif
}

Powered by Google App Engine
This is Rietveld 408576698