Re: [PATCH v5 1/6] last-modified: new subcommand to show when files were last modified
From: Christian Couder <hidden>
Date: 2025-08-01 09:09:38
From: Christian Couder <hidden>
Date: 2025-08-01 09:09:38
On Fri, Jul 18, 2025 at 2:02 AM Taylor Blau [off-list ref] wrote:
quoted
+struct last_modified { + struct hashmap paths; + struct rev_info rev; + int recursive, tree_in_recursive;Can we either make these two part of a bitfield, or at least declare them separately?
I wonder if we could/should use the `bool` type from <stdbool.h> as Documentation/CodingGuidelines says that it's now allowed.