summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/AttributeList.h
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2011-01-25 20:08:12 +0000
committerJeffrey Yasskin <jyasskin@google.com>2011-01-25 20:08:12 +0000
commitc60e13aeff96515d27638129154b1308c15ded3d (patch)
treef170899d1f2267e8b075786da203ee1633ba29c0 /include/clang/Sema/AttributeList.h
parent48a4ce7d484a448490edfe9e1d47b806cee85f30 (diff)
Add an attribute to forbid temporary instances of a type. This allows class
authors to write class __attribute__((forbid_temporaries)) Name { ... }; when they want to force users to name all variables of the type. This protects people from doing things like creating a scoped_lock that only lives for a single statement instead of an entire scope. The warning produced by this attribute can be disabled by -Wno-forbid-temporaries. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124217 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/AttributeList.h')
-rw-r--r--include/clang/Sema/AttributeList.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Sema/AttributeList.h b/include/clang/Sema/AttributeList.h
index 91389a4d98..7ed6ffcdaf 100644
--- a/include/clang/Sema/AttributeList.h
+++ b/include/clang/Sema/AttributeList.h
@@ -104,6 +104,7 @@ public:
AT_dllimport,
AT_ext_vector_type,
AT_fastcall,
+ AT_forbid_temporaries,
AT_format,
AT_format_arg,
AT_global,