<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/98122>98122</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            clang-tidy misc-include-cleaner does not detect `chrono` header
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            clang-tidy
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          andrea-cassioli-maersk
      </td>
    </tr>
</table>

<pre>
    I have noticed that when running with `misc-include-cleaner` option, clang-tidy seems not to detect that the `chrono` header is provided and used.

In one of my project file you can find

```
#include <algorithm>
#include <chrono>
#include <functional>
#include <set>
#include <string>

// some other code

 const auto time_residual = rotation_time - std::chrono::round<std::chrono::weeks>(t);
  constexpr std::chrono::minutes kThreshold{30};
  if (std::chrono::abs(time_residual) > kThreshold) {
    results << ErrorMessage("FOO");
  }

// and more code goes here
```


Running clang-tidy I get

```
/Users/<my-path>/foo.cpp:241:68: error: no header providing "std::chrono::round" is directly included [misc-include-cleaner,-warnings-as-errors]
    2 |   const auto time_residual = rotation_time - std::chrono::round<std::chrono::weeks>(t);
      |   

```

and the header `#include <__chrono/duration.h>` is added to the file.

Notice it is not only `std::chrono::round` that is not found, but `std::chrono::weeks` as well. 


I am running on 

```
➜  $ clang-tidy --version
Homebrew LLVM version 18.1.8
  Optimized build.
```

</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzEVV1v6jgT_jXmZhRkbCDJRS4oFL2VznkrrXb3tjLxkHjr2Mh2yrK_fjVJ2lIdyu0iZELm-5mZxypG0zjEiq0e2Go3U31qfaiU0wFVVpPYW5N1CkN8nR28vlRP0Ko3BOeTqVFDalWCc4sOQu-ccQ2cTWqBrXlnYp0ZV9teY1ZbVA4DW3Pwp2S8Y2ILtVWuyZLRF4iIXSSnkDxoTFin0XVqkZzVbfDOk3mLSmMAE-EU_JvRqEE5DX1EPWd8x_hmPJ8ceIfgj9BdSPUvcnk0FuHie6iVg6Nx-tqCrfn0Hf8KOWUPTG6VbXwwqe2YfLwlnxK8LTz2rqailf1GIWL6TpKCcc2ncFLZM7GH6DsEn1oMUHuN1xpQexcTqD55SKbDl4DR6F5ZYHIHwSdF-byQCDKISTO5YXLzXgU9B987PWRwQ3hGfI2UlSgSEyWTD1PcMTD-fQq3vXbG9QkjvP7eBoytt5rlD5KzfHflwxyBieKmvTpEinldEhMlMPl47ZLe5B_uAALG3qZIgDK5hccQfPiJMaoGmSiYEPvnZybE10oop19Bp2HrfMABcmg8Rmgx4O0Rujp_m9bjauifoMF0dwL3f0QMkSLLbXfJTiq1A-j7o_fz-nRiciOWCyY364LJDSDVRQ_Ov-_JuCQUmAlxp89C0EppE7BO9gLTBGpgq4ebiyy22VkFqihmKmZD5MhWu0_MBbB8C_DfTSJ9xhTuYTyc1FRimgk0kn7ZwpeXKaTY6z4MGc-HTqw5waY0QUUFtjhwzBcm-v9AlWASqRLFeWcvFONOsWs-0t9kcRx7tIVDn761HJFYc1ARzmjtHH6dwidQ3QdTe3cXmUfBykdWbgGYWF7PbZa9YYhE4oPi_3yHh4Bn-PHjz58wiWBRzBfz4r0Xz6dkOvMPajj0xn4w9deIM11JXcpSzbBa5IKvFnwtl7O2Enm-LJbiKGRR4KpUokZVlMc6z9e8WOR8ZirBxZLnvOS5zBfL-TKXB6VxdSiLgue4ZkuOnTJ2bu1bN_ehmZkYe6zKYiHEzKoD2jhcgkJ8FkqMsNrNQkVG2aFvIltya2KKn26SSRarK3BubQtooglq5HS13bjRZn2wVZvSKVI3B65pTGr7w7z2HRN7ijj9ZNN1xsR-qIIIYizkrRL_BgAA___gRl6D">