|
1 | 1 | /* -*- Mode: C++; c-basic-offset:4; indent-tabs-mode:nil -*- */
|
2 | 2 | /*
|
3 |
| - * Copyright (c) 2020-2023 Triad National Security, LLC |
| 3 | + * Copyright (c) 2020-2024 Triad National Security, LLC |
4 | 4 | * All rights reserved.
|
5 | 5 | *
|
6 | 6 | * Copyright (c) 2020-2021 Lawrence Livermore National Security, LLC
|
|
17 | 17 | #ifndef QVI_COMMON_H
|
18 | 18 | #define QVI_COMMON_H
|
19 | 19 |
|
20 |
| -#include "quo-vadis/config.h" |
21 |
| -#include "qvi-macros.h" |
22 |
| -#include "quo-vadis.h" |
| 20 | +#include "quo-vadis/config.h" // IWYU pragma: keep |
| 21 | +#include "qvi-macros.h" // IWYU pragma: keep |
| 22 | +#include "quo-vadis.h" // IWYU pragma: keep |
23 | 23 |
|
24 |
| -#include <assert.h> |
25 |
| -#include <errno.h> |
| 24 | +#include <assert.h> // IWYU pragma: keep |
| 25 | +#include <errno.h> // IWYU pragma: keep |
26 | 26 | #include <fcntl.h>
|
27 |
| -#include <inttypes.h> |
28 |
| -#include <limits.h> |
| 27 | +#include <inttypes.h> // IWYU pragma: keep |
| 28 | +#include <limits.h> // IWYU pragma: keep |
29 | 29 | #include <pthread.h>
|
30 |
| -#include <stdarg.h> |
| 30 | +#include <stdarg.h> // IWYU pragma: keep |
31 | 31 | #include <stdbool.h>
|
32 | 32 | #include <stdint.h>
|
33 |
| -#include <stdio.h> |
34 |
| -#include <stdlib.h> |
35 |
| -#include <string.h> |
| 33 | +#include <stdio.h> // IWYU pragma: keep |
| 34 | +#include <stdlib.h> // IWYU pragma: keep |
| 35 | +#include <string.h> // IWYU pragma: keep |
36 | 36 | #include <sys/resource.h>
|
37 | 37 | #include <sys/stat.h>
|
38 | 38 | #include <sys/syscall.h>
|
|
41 | 41 | #include <unistd.h>
|
42 | 42 |
|
43 | 43 | #ifdef __cplusplus
|
44 |
| -#include "qvi-log.h" |
45 |
| - |
46 |
| -#include <chrono> |
47 |
| -#include <map> |
48 |
| -#include <new> |
49 |
| -#include <set> |
50 |
| -#include <stack> |
51 |
| -#include <stdexcept> |
52 |
| -#include <thread> |
53 |
| -#include <unordered_map> |
54 |
| -#include <unordered_set> |
55 |
| -#include <vector> |
| 44 | +#include "qvi-log.h" // IWYU pragma: keep |
| 45 | + // IWYU pragma: keep |
| 46 | +#include <chrono> // IWYU pragma: keep |
| 47 | +#include <map> // IWYU pragma: keep |
| 48 | +#include <new> // IWYU pragma: keep |
| 49 | +#include <set> // IWYU pragma: keep |
| 50 | +#include <stack> // IWYU pragma: keep |
| 51 | +#include <stdexcept> // IWYU pragma: keep |
| 52 | +#include <thread> // IWYU pragma: keep |
| 53 | +#include <unordered_map> // IWYU pragma: keep |
| 54 | +#include <unordered_set> // IWYU pragma: keep |
| 55 | +#include <vector> // IWYU pragma: keep |
56 | 56 | #endif
|
57 | 57 |
|
58 | 58 | typedef uint8_t byte_t;
|
|
0 commit comments