diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-22 23:31:10 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-24 16:12:02 +0300 |
commit | 94b04d166c1041028571222b9931121b0f7dfded (patch) | |
tree | 33d79d968cfd4a7e0977cb9686ae9ff4abfd52c4 /migrate/migrate.cxx | |
parent | 28de800a7a38ed781b8f04f8f380d65b2d79ec14 (diff) |
Implement brep-clean
Diffstat (limited to 'migrate/migrate.cxx')
-rw-r--r-- | migrate/migrate.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/migrate/migrate.cxx b/migrate/migrate.cxx index 56e2c83..25b84d0 100644 --- a/migrate/migrate.cxx +++ b/migrate/migrate.cxx @@ -15,9 +15,6 @@ #include <libbutl/pager.hxx> -#include <libbrep/types.hxx> -#include <libbrep/utility.hxx> - #include <libbrep/database-lock.hxx> #include <migrate/migrate-options.hxx> @@ -28,7 +25,7 @@ using namespace brep; // Operation failed, diagnostics has already been issued. // -struct failed: std::exception {}; +struct failed {}; static const char* help_info ( " info: run 'brep-migrate --help' for more information"); @@ -349,12 +346,12 @@ try } catch (const database_locked&) { - cerr << "brep-migrate or brep-load instance is running" << endl; + cerr << "brep-migrate or brep-load is running" << endl; return 2; } catch (const recoverable& e) { - cerr << "database recoverable error: " << e << endl; + cerr << "recoverable database error: " << e << endl; return 3; } catch (const cli::exception& e) |