diff options
author | J0WI <J0WI@users.noreply.github.com> | 2020-01-30 21:43:03 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-31 16:40:59 +0100 |
commit | 021ee053382c19a4de58c2554476894717cdd6de (patch) | |
tree | 830d993dd8fd0346f4b9d765cd587e0ab2af2aec /community/libixion/fix-nullptr_t.patch | |
parent | 11568349c23f5f2aa1c85e74466d9b8ccc19ad20 (diff) |
community/libixion: upgrade to 0.15.0
Diffstat (limited to 'community/libixion/fix-nullptr_t.patch')
-rw-r--r-- | community/libixion/fix-nullptr_t.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/libixion/fix-nullptr_t.patch b/community/libixion/fix-nullptr_t.patch new file mode 100644 index 00000000000..b7ab0498946 --- /dev/null +++ b/community/libixion/fix-nullptr_t.patch @@ -0,0 +1,25 @@ +From a8fe2c542b16ee30723ab3d7f3b643ee479e9723 Mon Sep 17 00:00:00 2001 +From: orbea <orbea@riseup.net> +Date: Fri, 23 Aug 2019 08:50:28 -0700 +Subject: [PATCH] Fix build with clang. + +--- + include/ixion/model_context.hpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/include/ixion/model_context.hpp b/include/ixion/model_context.hpp +index 6ff5b67..dc27ed0 100644 +--- a/include/ixion/model_context.hpp ++++ b/include/ixion/model_context.hpp +@@ -61,7 +61,7 @@ public: + } value; + + /** Initializes the cell to be empty. */ +- input_cell(nullptr_t); ++ input_cell(std::nullptr_t); + /** Boolean cell value. */ + input_cell(bool b); + /** The char array must be null-terminated. */ +-- +2.24.1 + |