From 3c8117e555b5d8b3ea9ad57ba0132e1909e21652 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Sun, 6 Oct 2019 14:26:39 +0200 Subject: [PATCH] Clang: uninitialized --- repos/base/include/base/connection.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/repos/base/include/base/connection.h b/repos/base/include/base/connection.h index 8155d6b38..7951b06af 100644 --- a/repos/base/include/base/connection.h +++ b/repos/base/include/base/connection.h @@ -24,6 +24,9 @@ namespace Genode { template class Connection; } +#pragma clang diagnostic ignored "-Wuninitialized" +// TODO: this diagnostic is now broken for most code in the tree, +// but thats not a regression from upstream class Genode::Connection_base : Noncopyable, Interface {