This commit is contained in:
@ -6,10 +6,12 @@
|
||||
void subsystem::checkInsert(ReturnValue_t result, const char* ctx) {
|
||||
if (result != returnvalue::OK) {
|
||||
sif::warning << "satsystem::checkInsert: Insertion failed at " << ctx;
|
||||
if (result == mapdefs::KEY_ALREADY_EXISTS) {
|
||||
if (result == containers::KEY_ALREADY_EXISTS) {
|
||||
sif::warning << ": Key already exists" << std::endl;
|
||||
} else if (result == mapdefs::MAP_FULL) {
|
||||
} else if (result == containers::MAP_FULL) {
|
||||
sif::warning << ": Map full" << std::endl;
|
||||
} else if (result == containers::LIST_FULL) {
|
||||
sif::warning << ": List full" << std::endl;
|
||||
} else {
|
||||
sif::warning << std::endl;
|
||||
}
|
||||
|
Reference in New Issue
Block a user