diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-09 13:58:38 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-09 13:58:38 +0000 |
commit | 62d506c24aaf543f84c82e2850a05b1387e4990d (patch) | |
tree | 3d356dcef6cb64baf648119c6b61aa9afd4e450b /service/ex.cpp | |
parent | Exclude api.h from tidy checks (diff) | |
download | mirrorsearch-62d506c24aaf543f84c82e2850a05b1387e4990d.tar.bz2 mirrorsearch-62d506c24aaf543f84c82e2850a05b1387e4990d.tar.xz mirrorsearch-62d506c24aaf543f84c82e2850a05b1387e4990d.zip |
Clang format
Diffstat (limited to 'service/ex.cpp')
-rw-r--r-- | service/ex.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/service/ex.cpp b/service/ex.cpp index f0e8e2e..1a207cd 100644 --- a/service/ex.cpp +++ b/service/ex.cpp @@ -2,15 +2,14 @@ namespace MirrorSearch { void - XmlError::ice_print(std::ostream&s) const + XmlError::ice_print(std::ostream & s) const { s << msg; } void - CurlError::ice_print(std::ostream&s) const + CurlError::ice_print(std::ostream & s) const { s << msg; } } - |