From e7a86455ed5eb4d9ca19d2f023b62f08826b9a2f Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 11 Jul 2025 17:17:43 +0900 Subject: [PATCH] quota-util: explicitly include linux/quota.h The header linux/quota.h provides e.g. QIF_DQBLKSIZE or PRJQUOTA, which is used where the quota-util.h is included. Let's explicitly include the header with 'IWYU pragma: export' tag. --- src/shared/quota-util.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/quota-util.h b/src/shared/quota-util.h index ec4da0cbb89..2e82b94134b 100644 --- a/src/shared/quota-util.h +++ b/src/shared/quota-util.h @@ -1,7 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once -#include /* IWYU pragma: export */ +#include /* IWYU pragma: export */ +#include /* IWYU pragma: export */ #include "forward.h" -- 2.47.3