hans added a comment.

This did turn up a problem.

With this patch Clang treats the following (based on 
https://source.chromium.org/chromium/chromium/src/+/main:media/formats/hls/source_string.h;l=125)
 as invalid, and so does MSVC:

  template <typename> struct __declspec(dllexport) Foo {
      static Foo create();
  };
  
  // Don't allow creating Foo's of ints.
  template <> Foo<int> Foo<int>::create() = delete; // MSVC: attempting to 
delete a __declspec(dllexport) function

The dllimport case errors similarly.

I'm tempted to make Clang keep allowing this. The intent of the code is 
perfectly clear -- the user is trying to delete the function, not export/import 
it -- and I can't think of any good way for the user to work around the error.

(Besides this issue, at least Chromium builds cleanly with this patch.)


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D135154

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

Reply via email to