aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-12-03 08:53:57 +1100
committerNeil <nyamatongwe@gmail.com>2021-12-03 08:53:57 +1100
commit5bc7f554b63702f7b8944be22347feb0acd7ea7c (patch)
treef64c7fa2187b094fbde2d995b7d067e0673644cf /win32
parentfe40dff3bad032d903563403046fca1702b190c4 (diff)
downloadscintilla-mirror-5bc7f554b63702f7b8944be22347feb0acd7ea7c.tar.gz
Remove comment that is no longer correct.
Diffstat (limited to 'win32')
-rw-r--r--win32/WinTypes.h1
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 (...) {