r249113 - Explicitly delete a function that is supposed to never be called.

Richard Smith via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 1 17:46:58 PDT 2015


Author: rsmith
Date: Thu Oct  1 19:46:58 2015
New Revision: 249113

URL: http://llvm.org/viewvc/llvm-project?rev=249113&view=rev
Log:
Explicitly delete a function that is supposed to never be called.

Modified:
    cfe/trunk/include/clang/AST/TemplateBase.h

Modified: cfe/trunk/include/clang/AST/TemplateBase.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/TemplateBase.h?rev=249113&r1=249112&r2=249113&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/TemplateBase.h (original)
+++ cfe/trunk/include/clang/AST/TemplateBase.h Thu Oct  1 19:46:58 2015
@@ -520,7 +520,7 @@ class TemplateArgumentListInfo {
 
   // This can leak if used in an AST node, use ASTTemplateArgumentListInfo
   // instead.
-  void* operator new(size_t bytes, ASTContext& C);
+  void *operator new(size_t bytes, ASTContext &C) = delete;
 
 public:
   TemplateArgumentListInfo() {}




More information about the cfe-commits mailing list