diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-02-26 22:10:01 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-02-26 22:44:14 +0000 |
commit | 459d1dba99c9d1a3c24c2c7cc13131c714b628a5 (patch) | |
tree | d89d48c89937d1e954237c19d4dc2f542dfdd1ad | |
parent | Git operations test data and setup sql (diff) | |
download | gentoobrowse-api-459d1dba99c9d1a3c24c2c7cc13131c714b628a5.tar.bz2 gentoobrowse-api-459d1dba99c9d1a3c24c2c7cc13131c714b628a5.tar.xz gentoobrowse-api-459d1dba99c9d1a3c24c2c7cc13131c714b628a5.zip |
Update GitError message writer
-rw-r--r-- | gentoobrowse-api/api/impl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gentoobrowse-api/api/impl.cpp b/gentoobrowse-api/api/impl.cpp index 1da1dfc..f032c3a 100644 --- a/gentoobrowse-api/api/impl.cpp +++ b/gentoobrowse-api/api/impl.cpp @@ -1,11 +1,11 @@ #include <maintenance.h> -#include <buffer.h> +#include <compileTimeFormatter.h> namespace Gentoo { + AdHocFormatter(GitErrorMessage, "Git Error: %? (code %?, class %?)"); void GitError::ice_print(std::ostream & s) const { - s << stringbf("Git Error: %s (code %d, class %d)", - message, errorCode, errorClass); + GitErrorMessage::write(s, message, errorCode, errorClass); } } |