LINBIT / drbd-utils

DRBD userspace utilities (for 9.x, 8.4, 8.3)
GNU General Public License v2.0
78 stars 46 forks source link

user: drbrdmon: add missing <stdint.h> includes #30

Closed thesamesam closed 1 year ago

thesamesam commented 1 year ago

GCC 13 drops some transitive includes within libstdc++.

Explicitly include for uint32_t etc.

Note that using deliberately because we're not using std::-prefixed types.

thesamesam commented 1 year ago

Thanks! You may want to give include-what-you-use a whack. It's not perfect, as sometimes it'll suggest implementation details (e.g. <bits/*>), but if you manually review the results, it's pretty useful.