mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 22:52:40 +01:00
22 lines
501 B
Diff
22 lines
501 B
Diff
From 93138fec87290ffbdd4919f313ea513eadca749c Mon Sep 17 00:00:00 2001
|
|
From: Peter Spiess-Knafl <dev@spiessknafl.at>
|
|
Date: Mon, 25 Apr 2016 15:02:37 +0200
|
|
Subject: [PATCH] Add missing #include <string>
|
|
|
|
---
|
|
src/brdecode.cc | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/brdecode.cc b/src/brdecode.cc
|
|
index d5c4c0d..bcd3ec7 100644
|
|
--- a/src/brdecode.cc
|
|
+++ b/src/brdecode.cc
|
|
@@ -21,6 +21,7 @@
|
|
#include <algorithm>
|
|
#include <exception>
|
|
#include <vector>
|
|
+#include <string>
|
|
|
|
namespace {
|
|
|