aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2019-09-25 16:51:44 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2019-09-26 14:54:31 +0000
commitda4cc769b33603875b454aeb132d5f34792fa4e7 (patch)
tree1f24ac62bf88de11253c45e15d24d12579da910b
parent47c12e77b84ed669db37ee0d8520e826d9560b48 (diff)
Don't ignore explicit: it's not boring
Change-Id: Ia939d855210a2aaf47a917f4438cb4f516cde2c1 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
-rwxr-xr-xpackaging-tools/resetboring.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging-tools/resetboring.py b/packaging-tools/resetboring.py
index 5c3a28250..a52795599 100755
--- a/packaging-tools/resetboring.py
+++ b/packaging-tools/resetboring.py
@@ -631,9 +631,9 @@ class Selector(object): # Select interesting changes, discard boring.
yield test, purge
# Don't ignore constexpr or nothrow; can't retract once added to an API.
+ # Don't ignore explicit; it matters.
# Words to ignore:
- for key in ('explicit', # ? 'inline',
- 'Q_REQUIRED_RESULT', 'Q_NORETURN',
+ for key in ('Q_REQUIRED_RESULT', 'Q_NORETURN', # ? 'inline',
'Q_DECL_CONST_FUNCTION', 'Q_ALWAYS_INLINE'):
def test(words, k=key):
return k in words