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

Unified Diff: Samples/multimedia/directshow/baseclasses/wxdebug.cpp

Issue 2713383003: Fix for compile error on recent clang. (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Samples/multimedia/directshow/baseclasses/wxdebug.cpp
diff --git a/Samples/multimedia/directshow/baseclasses/wxdebug.cpp b/Samples/multimedia/directshow/baseclasses/wxdebug.cpp
index 57638912f452ed27c296f625b3295a2fe6d16320..6efa736987f2b68c074a5b2684bb6ae5f26e7c35 100644
--- a/Samples/multimedia/directshow/baseclasses/wxdebug.cpp
+++ b/Samples/multimedia/directshow/baseclasses/wxdebug.cpp
@@ -1234,7 +1234,7 @@ CDisp::CDisp(IUnknown *pUnk)
hr = pUnk->QueryInterface(IID_IPin, (void **)&pp);
if(SUCCEEDED(hr))
{
- CDisp::CDisp(static_cast<IPin*>(pp));
+ CDisp dummy(static_cast<IPin*>(pp));
pp->Release();
return;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698