[PATCH] D38643: PR13575: Fix USR mangling for fixed-size arrays.

Alex Lorenz via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 9 10:26:33 PDT 2017


arphaman accepted this revision.
arphaman added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: lib/Index/USRGeneration.cpp:819
     }
+    if (const auto *const AT = dyn_cast<ArrayType>(T)) {
+      Out << "{";
----------------
Nit: I don't think you really need the 2nd const here and in the next if.


https://reviews.llvm.org/D38643





More information about the cfe-commits mailing list