Skip to content

Commit

Permalink
Fix obsolete C++ syntax in DirectShow library
Browse files Browse the repository at this point in the history
  • Loading branch information
samhocevar committed Feb 2, 2024
1 parent b4d0aed commit 35df1c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class AM_NOVTABLE CTransInPlaceFilter : public CTransformFilter

protected:

__out_opt IMediaSample * CTransInPlaceFilter::Copy(IMediaSample *pSource);
__out_opt IMediaSample * Copy(IMediaSample *pSource);

#ifdef PERF
int m_idTransInPlace; // performance measuring id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class CAggDirectDraw : public IDirectDraw, public CUnknown
CUnknown(pName,pUnk),
m_pDirectDraw(NULL) { };

virtual CAggDirectDraw::~CAggDirectDraw() { };
virtual ~CAggDirectDraw() { };

// Set the object we should be aggregating
void SetDirectDraw(__inout LPDIRECTDRAW pDirectDraw) {
Expand Down

0 comments on commit 35df1c8

Please sign in to comment.