diff options
author | François Andriot <[email protected]> | 2021-05-11 20:25:31 +0200 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-05-12 10:15:26 +0900 |
commit | 9d4e94e13f2b4f8848911da038eaffcea9dce7a7 (patch) | |
tree | eb933112528741ceec4ada90a71ae7a8adac3a23 /src/svnqt/client_cat.cpp | |
parent | eb8fa2d68a46e05c52d67e98abb60e9bb70cfa6c (diff) | |
download | tdesvn-9d4e94e13f2b4f8848911da038eaffcea9dce7a7.tar.gz tdesvn-9d4e94e13f2b4f8848911da038eaffcea9dce7a7.zip |
Fix ftbfs on Fedora 34
error: ISO C++17 does not allow dynamic exception specifications
Signed-off-by: François Andriot <[email protected]>
(cherry picked from commit 88eb13611e1e5626069e1a45ad5fd95fd4618431)
Diffstat (limited to 'src/svnqt/client_cat.cpp')
-rw-r--r-- | src/svnqt/client_cat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnqt/client_cat.cpp b/src/svnqt/client_cat.cpp index 5200917..63d7c66 100644 --- a/src/svnqt/client_cat.cpp +++ b/src/svnqt/client_cat.cpp @@ -49,7 +49,7 @@ namespace svn TQByteArray Client_impl::cat(const Path & path, const Revision & revision, - const Revision & peg_revision) throw (ClientException) + const Revision & peg_revision) { svn::stream::SvnByteStream buffer(*m_context); svn_error_t * error = internal_cat(path,revision,peg_revision,buffer); @@ -63,7 +63,7 @@ namespace svn Client_impl::cat(svn::stream::SvnStream&buffer, const Path & path, const Revision & revision, - const Revision & peg_revision) throw (ClientException) + const Revision & peg_revision) { svn_error_t * error = internal_cat(path,revision,peg_revision,buffer); if (error != 0) @@ -74,7 +74,7 @@ namespace svn Client_impl::get (const Path & path, const TQString & target, const Revision & revision, - const Revision & peg_revision) throw (ClientException) + const Revision & peg_revision) { svn::stream::SvnFileOStream buffer(target,*m_context); svn_error_t * error = internal_cat(path,revision,peg_revision,buffer); |