clang-tidy: fix missing include for uint32_t

Fixed the following error by including the <cstdint> header file.

'''
watchdog/watchdog_logging.hpp:23:33: error: unknown type name 'uint32_t' [clang-diagnostic-error]
   23 | void eventWatchdogTimeout(const uint32_t timeout);
'''

Change-Id: I3cee346296fa0c9925e920f5abc04470b15ad278
Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
1 file changed
tree: 45c8910336cbc9200adfcbe55b0f12b3809b02e2
  1. dump/
  2. subprojects/
  3. watchdog/
  4. .clang-format
  5. .gitignore
  6. .shellcheck-ignore
  7. checkstop_app.cpp
  8. LICENSE
  9. meson.build
  10. meson.options
  11. OWNERS
  12. README.md
  13. watchdog_timeout.cpp
README.md

openpower-debug-collector

Building the Code

To build this package, do the following steps:

    1. meson build
    2. ninja -C build

To clean the repository run `rm -rf build`.