diff options
author | Neil <nyamatongwe@gmail.com> | 2021-12-03 08:53:57 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-12-03 08:53:57 +1100 |
commit | 5bc7f554b63702f7b8944be22347feb0acd7ea7c (patch) | |
tree | f64c7fa2187b094fbde2d995b7d067e0673644cf | |
parent | fe40dff3bad032d903563403046fca1702b190c4 (diff) | |
download | scintilla-mirror-5bc7f554b63702f7b8944be22347feb0acd7ea7c.tar.gz |
Remove comment that is no longer correct.
-rw-r--r-- | win32/WinTypes.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/win32/WinTypes.h b/win32/WinTypes.h index 44a12f38b..9badd70a8 100644 --- a/win32/WinTypes.h +++ b/win32/WinTypes.h @@ -30,7 +30,6 @@ struct UnknownReleaser { // Called by unique_ptr to destroy/free the resource template <class T> void operator()(T *pUnknown) noexcept { - // same as ReleaseUnknown() in PlatWin.h try { pUnknown->Release(); } catch (...) { |