diff options
author | 2016-12-12 21:56:08 +0100 | |
---|---|---|
committer | 2016-12-14 08:33:21 -0800 | |
commit | feb3945a139c6b29f1cba3b30925c76a8a339a3d (patch) | |
tree | 3257a72a67f5580c4f9e3b25b0dd610d9bf20519 | |
parent | a38b1cff45024cebf45c6b032aa8a7ca7ea1757e (diff) | |
download | paludis-feb3945a139c6b29f1cba3b30925c76a8a339a3d.tar.gz paludis-feb3945a139c6b29f1cba3b30925c76a8a339a3d.tar.xz |
Add missing exception specification to declaration (NFC)
[302/1198] Building CXX object paludis/CMakeFiles/libpaludis.dir/ipc_output_manager.cc.o
/home/marv/devel/paludis/paludis/ipc_output_manager.cc:128:19: warning: function previously declared with an implicit exception specification redeclared with an explicit exception specification [-Wimplicit-exc
eption-spec-mismatch]
IPCOutputManager::~IPCOutputManager() noexcept(false)
^
/home/marv/devel/paludis/paludis/ipc_output_manager.hh:48:13: note: previous declaration is here
~IPCOutputManager();
^
1 warning generated.
Change-Id: Idc9f7cbf953230449ff273468b90461328d9b4fb
-rw-r--r-- | paludis/ipc_output_manager.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/ipc_output_manager.hh b/paludis/ipc_output_manager.hh index 111f6d556..3ddac98fe 100644 --- a/paludis/ipc_output_manager.hh +++ b/paludis/ipc_output_manager.hh @@ -45,7 +45,7 @@ namespace paludis const int pipe_read_fd, const int pipe_write_fd, const CreateOutputManagerInfo &); - ~IPCOutputManager(); + ~IPCOutputManager() noexcept(false); virtual std::ostream & stdout_stream() PALUDIS_ATTRIBUTE((warn_unused_result)); virtual std::ostream & stderr_stream() PALUDIS_ATTRIBUTE((warn_unused_result)); |