summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/store/deletedspecial.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/store/deletedspecial.cxx')
-rw-r--r--compilerplugins/clang/store/deletedspecial.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/store/deletedspecial.cxx b/compilerplugins/clang/store/deletedspecial.cxx
index 6c2d58807a86..b1329229e2fc 100644
--- a/compilerplugins/clang/store/deletedspecial.cxx
+++ b/compilerplugins/clang/store/deletedspecial.cxx
@@ -17,7 +17,7 @@
// Second-guess that certain private special member function declarations for
// which no definition can be found are left undefined to prevent them from
// being implicitly declared. Such situations are better expressed by marking
-// the function as SAL_DELETED_FUNCTION (it e.g. helps compilers determine
+// the function as = delete (it e.g. helps compilers determine
// whether class members are unused if all of a class's member definitions are
// seen in a compilation unit). (Default constructors for classes with multiple
// constructors are exempted as they would not be implicitly declared.