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
This commit is contained in:
Marvin Schmidt 2016-12-12 21:56:08 +01:00 committed by Saleem Abdulrasool
parent a38b1cff45
commit feb3945a13

@ -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));