From 4c598b504f506abba3162adde9551247335b7c54 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 5 Oct 2021 21:27:10 +0200 Subject: [PATCH] Follow include-what-you-use for our custom iswdigit() Commit fe63c8ad3 (Shadow/override iswdigit instead of changing it at individual call sites, 2021-10-04) added our own implementation of iswdigit() to common.h. The "include-what-you-use" rule means that files that use iswdigit() should now include common.h. Do that. --- src/history_file.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/history_file.cpp b/src/history_file.cpp index f2cb69cfc..89db75da9 100644 --- a/src/history_file.cpp +++ b/src/history_file.cpp @@ -4,6 +4,7 @@ #include +#include "common.h" #include "fds.h" #include "history.h" #include "path.h"