================
Comment at: cpp11-migrate/Transform.h:109
@@ -108,3 +108,3 @@
public:
- Transform() {
+ Transform(const llvm::StringRef &name) : Name(name) {
Reset();
----------------
Variable names should start with a capital letter. Shadowing the member is OK.
================
Comment at: cpp11-migrate/Transform.h:163
@@ +162,3 @@
+ }
+ void setRejectedChanges(unsigned changes) {
+ RejectedChanges = changes;
----------------
Variable names should start with a capital letter.
http://llvm-reviews.chandlerc.com/D338
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits