[PATCH] D49733: [AST][3/4] Move the bit-fields from BlockDecl, LinkageSpecDecl and OMPDeclareReductionDecl into DeclContext

Erich Keane via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Jul 24 09:56:07 PDT 2018


erichkeane added a comment.

Another one in need of clang-format, but generally seems pretty mechanical.



================
Comment at: include/clang/AST/DeclCXX.h:2844
+
+  bool hasBracesImpl() const { return LinkageSpecDeclBits.HasBraces; }
+  void setBracesImpl(bool B = true) { LinkageSpecDeclBits.HasBraces = B; }
----------------
Again, I doubt the value here.


Repository:
  rC Clang

https://reviews.llvm.org/D49733





More information about the cfe-commits mailing list