rnk added inline comments.

================
Comment at: cfe/trunk/include/clang/Sema/DeclSpec.h:366
   // constexpr-specifier
-  unsigned Constexpr_specified : 1;
+  ConstexprSpecKind ConstexprSpecifier : 2;
 
----------------
Please always use `unsigned` for bitfields to avoid sign extensions under MSVC. 
I've fixed this in r363450. This makes the test you added pass on Windows 
(@dyung's comment).


Repository:
  rL LLVM

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

https://reviews.llvm.org/D61790



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to