calendarspec: drop _pure_ from static function

For static functions the compiler should be able to determine this on
its own, let's not add needless decorators.
This commit is contained in:
Lennart Poettering 2020-04-30 13:19:14 +02:00
parent 80b19994a4
commit 3c6f0300ae
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ int calendar_spec_normalize(CalendarSpec *c) {
return 0;
}
_pure_ static bool chain_valid(CalendarComponent *c, int from, int to, bool end_of_month) {
static bool chain_valid(CalendarComponent *c, int from, int to, bool end_of_month) {
assert(to >= from);
if (!c)