etienneb added a subscriber: etienneb.

================
Comment at: clang-tidy/modernize/UseUsingCheck.cpp:32
@@ +31,3 @@
+
+  diag(MatchedDecl->getLocStart(), "use using instead of typedef")
+      << FixItHint::CreateReplacement(
----------------
I think 'using' should be quote.
This message is hard to read and understand from a user point of view.

================
Comment at: test/clang-tidy/modernize-use-using.cpp:48
@@ +47,3 @@
+};
+
+using balba = long long;
----------------
Could you add test with macro:

#define CODE \
  typedef int INT; \
  [....]

CODE;


Repository:
  rL LLVM

http://reviews.llvm.org/D18919



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

Reply via email to