rsmith added inline comments.

================
Comment at: include/clang/AST/DeclTemplate.h:374
@@ +373,3 @@
+  bool isConcept() const { return TemplatedDecl.getInt(); }
+  void setConcept(bool IC) { TemplatedDecl.setInt(true); }
+
----------------
I would prefer to not have a setter at all, but if it's awkward to pass this 
flag into the constructor, then a setter is fine (and I don't mind whether or 
not it takes a parameter). We should definitely not take a parameter and ignore 
it though.


http://reviews.llvm.org/D13357



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

Reply via email to