[PATCH] Added summary option to cpp11-migrate tool
Dmitri Gribenko
gribozavr at gmail.com
Fri Mar 1 12:17:55 PST 2013
================
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
More information about the cfe-commits
mailing list