diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-07 20:26:35 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-07-07 20:26:35 +0300 |
commit | 77ae36775de62a858327a65e7d2b63e143551d17 (patch) | |
tree | 3d720f7b4d51e04dff1d315f7a06ca36438ffbda | |
parent | cee01f171a505cc91dcfa2f1ecb9c9f6e2a9bd17 (diff) |
Supress clang's 'control may reach end of non-void function' warning
-rw-r--r-- | bpkg/utility.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx index c6f2fae..b78ee9b 100644 --- a/bpkg/utility.cxx +++ b/bpkg/utility.cxx @@ -94,7 +94,7 @@ namespace bpkg } catch (io_error&) { - fail << "unable to read y/n answer from stdin"; + fail << "unable to read y/n answer from stdin" << endf; } } |