From bff4c13475957863bfa7da5bc3bcf82a64a7503a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 12 Oct 2015 15:25:41 +0200 Subject: Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3 --- compilerplugins/clang/store/deletedspecial.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compilerplugins/clang') 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. -- cgit