tbaeder added a comment.

I don't know much about fixit hints, would they be appropriate to display it 
below the line itself, e.g.

  test.cpp:24:17: note: expression evaluates to
  static_assert(c != c);
              '0' != '0'
                ~~^~~~

Or would it be even better to just inline the evaluated expression into the 
`static_assert` ala

  test.cpp:24:17: note: expression evaluates to
  static_assert('0' != '0');
                  ~~^~~~


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D130894/new/

https://reviews.llvm.org/D130894

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

Reply via email to