MyDeveloperDay added a comment.

I'm looking at a bug (sorry can't log it as we don't seem to have a working bug 
tracker!) that causes a regression on `operator new(` and `operator delete(` 
which I believe I've tracked to this change

v12

  ~foo() { ::operator delete(bar); }
  
  ::operator delete(bar)

after this change, (space between delete and (bar) when at function depth, but 
not at global)

  ~foo() { ::operator delete (bar); }
  
  ::operator delete(bar)


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

https://reviews.llvm.org/D110833

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

Reply via email to