Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-debug-collector
/
247159b0b0afb2327c31e2c1345c4dd508548d30
/
.
/
errors_map.hpp
blob: 13895095162eba226bbbd3c237f1b169eefe4687 [
file
] [
log
] [
blame
]
#pragma
once
#include
<map>
#include
<string>
#include
<vector>
using
EType
=
std
::
string
;
using
Error
=
std
::
string
;
using
ErrorList
=
std
::
vector
<
Error
>;
using
ErrorMap
=
std
::
map
<
EType
,
ErrorList
>;
extern
const
ErrorMap
errorMap
;