635e9da391
* par is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From ee2228ea2f18ac5da9b434ee6089381df815aa94 Mon Sep 17 00:00:00 2001
|
|
From: Yichao Yu <yyc1992@gmail.com>
|
|
Date: Wed, 5 Jun 2019 09:03:40 -0400
|
|
Subject: [utils/gtkprops] Remove unnecessary constexpr, this is not allowed in
|
|
C++14
|
|
|
|
BUG: 408286
|
|
---
|
|
lib/utils/gtkprops.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
(limited to 'lib/utils/gtkprops.h')
|
|
|
|
diff --git a/lib/utils/gtkprops.h b/lib/utils/gtkprops.h
|
|
index abc0675..e248255 100644
|
|
--- a/lib/utils/gtkprops.h
|
|
+++ b/lib/utils/gtkprops.h
|
|
@@ -74,7 +74,7 @@ class GtkWidgetProps {
|
|
};
|
|
#define DEF_WIDGET_SIG_CONN_PROPS(name) \
|
|
struct _SigConn_##name##_ObjGetter { \
|
|
- constexpr inline GObject* \
|
|
+ inline GObject* \
|
|
operator()(SigConn<_SigConn_##name##_ObjGetter> *p) const \
|
|
{ \
|
|
return (GObject*)qtcContainerOf(p, Props, name)->m_w; \
|
|
--
|
|
cgit v1.1
|
|
|