Control: tags -1 patch fixed-upstream
The upstream fix for the rsbackup FTBFS with gcc 7 is attached.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
>From 2faba794de0d08487d280d85870d294339a138f4 Mon Sep 17 00:00:00 2001
From: Richard Kettlewell <[email protected]>
Date: Sat, 5 Aug 2017 14:02:21 +0100
Subject: Add [[noreturn]] attributes to version/help functions
--- a/src/Command.h
+++ b/src/Command.h
@@ -140,10 +140,10 @@ public:
private:
/** @brief Display help message and terminate */
- void help();
+ [[noreturn]] void help();
/** @brief Display version string and terminate */
- void version();
+ [[noreturn]] void version();
};
/** @brief Program command line */