From 9d4e94e13f2b4f8848911da038eaffcea9dce7a7 Mon Sep 17 00:00:00 2001 From: François Andriot Date: Tue, 11 May 2021 20:25:31 +0200 Subject: Fix ftbfs on Fedora 34 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit error: ISO C++17 does not allow dynamic exception specifications Signed-off-by: François Andriot (cherry picked from commit 88eb13611e1e5626069e1a45ad5fd95fd4618431) --- src/svnqt/wc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/svnqt/wc.h') 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 ); }; } -- cgit v1.2.3