summaryrefslogtreecommitdiffstats
path: root/src/svnqt/wc.h
diff options
context:
space:
mode:
authorFrançois Andriot <francois.andriot@free.fr>2021-05-11 20:25:31 +0200
committerFrançois Andriot <francois.andriot@free.fr>2021-05-11 20:25:31 +0200
commit88eb13611e1e5626069e1a45ad5fd95fd4618431 (patch)
treee6cf5c49a2f1883e348d9f58d66bf252e4a78f19 /src/svnqt/wc.h
parent283bc34244d24be02e90b767a82826a4ca8da186 (diff)
downloadtdesvn-88eb13611e1e5626069e1a45ad5fd95fd4618431.tar.gz
tdesvn-88eb13611e1e5626069e1a45ad5fd95fd4618431.zip
Fix ftbfs on Fedora 34
error: ISO C++17 does not allow dynamic exception specifications Signed-off-by: François Andriot <francois.andriot@free.fr>
Diffstat (limited to 'src/svnqt/wc.h')
-rw-r--r--src/svnqt/wc.h8
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 );
};
}