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/repository.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/repository.h')
-rw-r--r-- | src/svnqt/repository.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/svnqt/repository.h b/src/svnqt/repository.h index 05913b2..ddff4f6 100644 --- a/src/svnqt/repository.h +++ b/src/svnqt/repository.h @@ -63,7 +63,7 @@ public: \param path Path to a local repository, must not be an url \exception ClientException will be thrown in case of an error */ - void Open(const TQString&path) throw (ClientException); + void Open(const TQString&path); //! Creates and open a new repository /*! * Creates a new repository in path with type fstype. If create succeeded open and assigns with the object. @@ -75,7 +75,7 @@ public: * \param _pre_1_4_compat Create repository compatibel to version earlier than 1.4 (only used with subversion 1.4) */ void CreateOpen(const TQString&path, const TQString&fstype, bool _bdbnosync = false, - bool _bdbautologremove = true, bool _pre_1_4_compat=false, bool _pre_1_5_compat=false) throw (ClientException); + bool _bdbautologremove = true, bool _pre_1_4_compat=false, bool _pre_1_5_compat=false); //! dump content of repository to a file /*! The repository must opend before. Progress message go trough the assigned svn::repository::RepositoryListener object. @@ -87,7 +87,7 @@ public: \param use_deltas use deltas in dump output \exception ClientException will be thrown in case of an error */ - void dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas)throw (ClientException); + void dump(const TQString&output,const svn::Revision&start,const svn::Revision&end, bool incremental, bool use_deltas); //! load a dump into repository /*! The repository must opened before. Progress message go trough the assigned svn::repository::RepositoryListener object. @@ -98,7 +98,7 @@ public: \param usePost use post-commit-hook \exception ClientException will be thrown in case of an error */ - void loaddump(const TQString&dump,LOAD_UUID uuida, const TQString&parentFolder, bool usePre, bool usePost)throw (ClientException); + void loaddump(const TQString&dump,LOAD_UUID uuida, const TQString&parentFolder, bool usePre, bool usePost); //! copy a repository to a new location /*! \param src the repository path to copy @@ -106,7 +106,7 @@ public: \param cleanlogs remove redundand log files from source \exception ClientException will be thrown in case of an error */ - static void hotcopy(const TQString&src,const TQString&dest,bool cleanlogs)throw (ClientException); + static void hotcopy(const TQString&src,const TQString&dest,bool cleanlogs); private: RepositoryData*m_Data; |