ColDepends: Allow specifying short(er) UUIDs

This commit is contained in:
Tomas Babej 2021-12-03 03:57:37 -05:00
parent 01add8a34a
commit 3a00956144
3 changed files with 30 additions and 3 deletions

View file

@ -29,6 +29,7 @@
#include <new>
#include <cstring>
#include <Context.h>
#include <regex>
////////////////////////////////////////////////////////////////////////////////
int main (int argc, const char** argv)
@ -64,6 +65,11 @@ int main (int argc, const char** argv)
status = -3;
}
catch (const std::regex_error& e)
{
std::cout << "regex_error caught: " << e.what() << '\n';
}
catch (...)
{
std::cerr << "Unknown error. Please report.\n";