[PATCH] D55830: [clang] [Basic] Correct description of SanitizerSet.empty()

Michał Górny via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Dec 19 09:29:31 PST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL349648: [Basic] Correct description of SanitizerSet.empty() (authored by mgorny, committed by ).
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D55830?vs=178694&id=178900#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D55830/new/

https://reviews.llvm.org/D55830

Files:
  cfe/trunk/include/clang/Basic/Sanitizers.h


Index: cfe/trunk/include/clang/Basic/Sanitizers.h
===================================================================
--- cfe/trunk/include/clang/Basic/Sanitizers.h
+++ cfe/trunk/include/clang/Basic/Sanitizers.h
@@ -66,7 +66,7 @@
   /// Disable the sanitizers specified in \p K.
   void clear(SanitizerMask K = SanitizerKind::All) { Mask &= ~K; }
 
-  /// Returns true if at least one sanitizer is enabled.
+  /// Returns true if no sanitizers are enabled.
   bool empty() const { return Mask == 0; }
 
   /// Bitmask of enabled sanitizers.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55830.178900.patch
Type: text/x-patch
Size: 541 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20181219/ed43456e/attachment.bin>


More information about the cfe-commits mailing list