[libcxx-commits] [PATCH] D91004: [libc++] Implements concept destructible

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Nov 9 11:09:46 PST 2020


Mordante added a comment.

In D91004#2383512 <https://reviews.llvm.org/D91004#2383512>, @miscco wrote:

> One last ask for @ldionne, currently MSVC`s internal test runner seems to require int main() even in compile only tests, as it not yet understands compileonly tests. For the sake ofcompatibility could we for now include `int main() {}` to enable cross vendor compatibility.
>
> I would be happy to clean that up once it MSVC fixes their side

I can add the following to the test if that help the MSVC team:

  // Required for MSVC internal test runner compatibility.
  int main(int, char**) {
      return 0;
  }


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

https://reviews.llvm.org/D91004



More information about the libcxx-commits mailing list