Fixed logging levels

This commit is contained in:
Bartek Kryza
2021-03-14 23:27:53 +01:00
parent c5beac2bd2
commit 5a5652a443
19 changed files with 57 additions and 76 deletions

View File

@@ -53,21 +53,9 @@ struct diagram {
bool started{false};
std::string name;
// std::map<std::string, activity> sequences;
std::map<std::string, activity> sequences;
void sort()
{
/*
std::sort(sequence.begin(), sequence.end(),
[](const auto &a, const auto &b) -> bool {
if (a.from_usr == b.from_usr)
return a.line > b.line;
return a.from_usr > b.from_usr;
});
*/
}
void sort() {}
};
}
}