From 7e63d383b89cd75b7775883d71ed09724b9ee73f Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Tue, 22 Dec 2020 13:37:56 +0100 Subject: [PATCH] c++: Fix build with clang After the addition of libcody building with clang 10.0.1 would fail as follows: In file included from .../libcody/cody.hh:24: In file included from /usr/include/c++/v1/memory:653: /usr/include/c++/v1/typeinfo:346:5: error: no member named 'fancy_abort' in namespace 'std::__1'; did you mean simply 'fancy_abort'? _VSTD::abort(); ^~~~~~~ mapper-client.cc and mapper-resolver.cc have addressed this already by getting and included; do the same for module.cc. gcc/cp: 2020-12-22 Gerald Pfeifer * module.cc (INCLUDE_STRING): Define. (INCLUDE_VECTOR): Ditto. --- gcc/cp/module.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc index 7e38293545f..ed3dbe244a3 100644 --- a/gcc/cp/module.cc +++ b/gcc/cp/module.cc @@ -207,6 +207,8 @@ Classes used: #define _DEFAULT_SOURCE 1 /* To get TZ field of struct tm, if available. */ #include "config.h" +#define INCLUDE_STRING +#define INCLUDE_VECTOR #include "system.h" #include "coretypes.h" #include "cp-tree.h" -- 2.30.2