You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-cpp/waylandpp/files/waylandpp-0.2.7-fix-std-run...

26 lines
743 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

From 695c0881101435a57d24c84d04cbcb79eec49903 Mon Sep 17 00:00:00 2001
From: Rechi <Rechi@users.noreply.github.com>
Date: Sat, 18 Jan 2020 23:37:46 +0100
Subject: [PATCH] [fix] add missing stdexcept include after 2d834a6
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
fixes error: runtime_error is not a member of std
---
include/wayland-util.hpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/wayland-util.hpp b/include/wayland-util.hpp
index 9cf5d04..1609651 100644
--- a/include/wayland-util.hpp
+++ b/include/wayland-util.hpp
@@ -28,6 +28,7 @@
#include <algorithm>
#include <memory>
+#include <stdexcept>
#include <string>
#include <typeinfo>
#include <utility>