#
437f0b27 |
| 21-Jun-2024 |
Pavithra Barithaya <pavithrabarithaya07@gmail.com> |
clang-tidy: Enable modernize-use-emplace check
The check flags insertions to an STL-style container done by calling the push_back, push, or push_front methods with an explicitly-constructed temporar
clang-tidy: Enable modernize-use-emplace check
The check flags insertions to an STL-style container done by calling the push_back, push, or push_front methods with an explicitly-constructed temporary of the container element type. In this case, the corresponding emplace equivalent methods result in less verbose and potentially more efficient code.
Change-Id: I1e7ae19ef1400c83717b2df48f3314ba4e96423e Signed-off-by: Pavithra Barithaya <pavithrabarithaya07@gmail.com>
show more ...
|
#
66a93fc8 |
| 21-Jun-2024 |
Pavithra Barithaya <pavithrabarithaya07@gmail.com> |
clang-tidy: Enable modernize-raw-string-literal check
This check selectively replaces string literals containing escaped characters with raw string literals.
Change-Id: I76fd4cde664f10390e368170441
clang-tidy: Enable modernize-raw-string-literal check
This check selectively replaces string literals containing escaped characters with raw string literals.
Change-Id: I76fd4cde664f10390e36817044153d62380278bf Signed-off-by: Pavithra Barithaya <pavithrabarithaya07@gmail.com>
show more ...
|
#
e426b589 |
| 28-May-2020 |
Andrew Geissler <geissonator@yahoo.com> |
clang-format: update to latest from docs repo
This is from openbmc/docs/style/cpp/.clang-format
Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: I5b80bb568451706afb6d268b41e1a5357a
clang-format: update to latest from docs repo
This is from openbmc/docs/style/cpp/.clang-format
Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: I5b80bb568451706afb6d268b41e1a5357a2ca6db
show more ...
|
#
75a2614f |
| 09-Aug-2019 |
Andrew Geissler <geissonator@yahoo.com> |
sysd_monitor: Handle default for errors to monitor
If default is input, replace it with the three default errors to monitor for
Tested: - Relied on unit test
Change-Id: Ife92e74242d72b322f46f7f08d
sysd_monitor: Handle default for errors to monitor
If default is input, replace it with the three default errors to monitor for
Tested: - Relied on unit test
Change-Id: Ife92e74242d72b322f46f7f08d5a47068b31977d Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|
#
693eaed0 |
| 02-Aug-2019 |
Andrew Geissler <geissonator@yahoo.com> |
sysd_monitor: Parse json file(s)
Parse the json file(s) into a c++ data object that can be used in later commits to easily check for monitored targets and log appropriate errors.
Accept a command l
sysd_monitor: Parse json file(s)
Parse the json file(s) into a c++ data object that can be used in later commits to easily check for monitored targets and log appropriate errors.
Accept a command line parameter to input file and call parsing function
Tested: - Verified 100% code coverage of new parser cpp
Change-Id: I0bacd80b7f5330eb9cb03d8e3717742ab107bf94 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|