From: Francis Deslauriers Date: Tue, 3 Dec 2019 22:17:42 +0000 (-0500) Subject: Cleanup: apply `include-what-you-use` guideline for `uint*_t` X-Git-Tag: v2.13.0-rc1~547 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=fb31eb73d8a4a6d9784ed5c335b7fa3b9684108c;hp=fb31eb73d8a4a6d9784ed5c335b7fa3b9684108c;p=lttng-ust.git Cleanup: apply `include-what-you-use` guideline for `uint*_t` I saw that some files use `uint*_t` types but there are not including a header for it. The `uint*_t` types is defined by the following header: So, to follow the best practice of including what is used in a file, I added `#include ` in files using `uint*_t`. Signed-off-by: Francis Deslauriers Signed-off-by: Mathieu Desnoyers Change-Id: I5da13744858a57fc8c9bf6a6cf1b29299c2211cc ---