clang-tidy: delete unintended default constructor

Mark the class’s default constructor as `=delete` to prevent accidental
default construction and align with clang-tidy guidance. This enforces
explicit initialization and avoids misuse of incomplete/invalid state.
No functional changes.

Change-Id: Ia83ec93592cd1a1f18f1dfa687fbcd6fd261a835
Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
1 file changed
tree: 7cf2665f1dc285259e4665733540595fded4d54c
  1. src/
  2. test/
  3. .clang-format
  4. .gitignore
  5. .lcovrc
  6. LICENSE
  7. meson.build
  8. meson.options
  9. OWNERS
  10. README.md
README.md

ipmi-blob-tool

ipmi-blob-tool is a host-side tool that speaks the BLOB protocol over IPMI.

Dependencies

Test cases require google{test,mock}, valgrind, and lcov.

Building

For a standard release build, you want something like:

./bootstrap.sh
./configure --disable-tests
make
make install

For a test / debug build, a typical configuration is

./bootstrap.sh
./configure --enable-tests --enable-coverage --enable-valgrind
make
make check
make check-valgrind
make check-code-coverage