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/wc.h | |
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/wc.h')
-rw-r--r-- | src/svnqt/wc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svnqt/wc.h b/src/svnqt/wc.h index fa41c2d..7f8c1fe 100644 --- a/src/svnqt/wc.h +++ b/src/svnqt/wc.h @@ -71,19 +71,19 @@ namespace svn */ static void ensureAdm (const TQString& dir, const TQString& uuid, - const TQString& url, const Revision & revision) throw (ClientException); + const TQString& url, const Revision & revision); /** * retrieve the url of a given working copy item * @param path the working copy item to check * @return the repository url of @a path */ - static TQString getUrl(const TQString&path) throw (ClientException); - static TQString getRepos(const TQString&path) throw (ClientException); + static TQString getUrl(const TQString&path); + static TQString getRepos(const TQString&path); static const char * ADM_DIR_NAME; private: - static const svn_wc_entry_t *getEntry( const TQString &path ) throw ( ClientException ); + static const svn_wc_entry_t *getEntry( const TQString &path ); }; } |