diff options
Diffstat (limited to 'packages/binutils-oracle/2.30/0000-Fix-a-missing-include-of-string.patch')
-rw-r--r-- | packages/binutils-oracle/2.30/0000-Fix-a-missing-include-of-string.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/binutils-oracle/2.30/0000-Fix-a-missing-include-of-string.patch b/packages/binutils-oracle/2.30/0000-Fix-a-missing-include-of-string.patch new file mode 100644 index 00000000..8ba0e8de --- /dev/null +++ b/packages/binutils-oracle/2.30/0000-Fix-a-missing-include-of-string.patch @@ -0,0 +1,24 @@ +From 23272f9927dc95c0cf6f7c5aabcc0551eca572c5 Mon Sep 17 00:00:00 2001 +From: Martin Liska <mliska@suse.cz> +Date: Fri, 7 Jun 2019 07:36:52 +0200 +Subject: [PATCH] Fix a missing include of <string> + +gold/ChangeLog: + +2019-06-07 Martin Liska <mliska@suse.cz> + + * errors.h: Include string. +--- + gold/errors.h | 1 + + 1 file changed, 1 insertion(+) + +--- a/gold/errors.h ++++ b/gold/errors.h +@@ -24,6 +24,7 @@ + #define GOLD_ERRORS_H + + #include <cstdarg> ++#include <string> + + #include "gold-threads.h" + |