[clang-tools-extra] r250283 - Support every kind of initialization.
Renato Golin via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 14 03:41:07 PDT 2015
On 14 October 2015 at 10:22, Angel Garcia Gomez via cfe-commits
<cfe-commits at lists.llvm.org> wrote:
> Author: angelgarcia
> Date: Wed Oct 14 04:22:32 2015
> New Revision: 250283
>
> URL: http://llvm.org/viewvc/llvm-project?rev=250283&view=rev
> Log:
> Support every kind of initialization.
Hi, this broke our ARM bots:
http://lab.llvm.org:8011/builders/clang-cmake-thumbv7-a15/builds/6573
http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15-selfhost/builds/5496
> std::unique_ptr<Base> getPointer() {
> @@ -48,7 +58,7 @@ std::unique_ptr<Base> getPointer() {
> // CHECK-FIXES: return std::make_unique<Base>();
> }
You probably just need to change to:
// CHECK-FIXES: return std::make_unique<Base>({{.*}});
cheers,
--renato
More information about the cfe-commits
mailing list