Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
otb
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
212
Issues
212
List
Boards
Labels
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main Repositories
otb
Commits
7fd7843d
Commit
7fd7843d
authored
Sep 30, 2019
by
Victor Poughon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
REFAC: change throw() to noexcept
parent
95356540
Pipeline
#2717
failed with stages
in 5 minutes and 13 seconds
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
Modules/ThirdParty/SiftFast/src/otbsiftfast/siftfastpy.cpp
Modules/ThirdParty/SiftFast/src/otbsiftfast/siftfastpy.cpp
+2
-2
Modules/Visualization/MonteverdiCore/include/mvdAbstractWorker.h
.../Visualization/MonteverdiCore/include/mvdAbstractWorker.h
+1
-1
Modules/Visualization/MonteverdiCore/include/mvdSystemError.h
...les/Visualization/MonteverdiCore/include/mvdSystemError.h
+1
-1
Modules/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx
...es/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx
+1
-1
No files found.
Modules/ThirdParty/SiftFast/src/otbsiftfast/siftfastpy.cpp
View file @
7fd7843d
...
...
@@ -44,8 +44,8 @@ struct siftfast_exception : std::exception
{
siftfast_exception
()
:
std
::
exception
(),
_s
(
"unknown exception"
)
{}
siftfast_exception
(
const
string
&
s
)
:
std
::
exception
()
{
_s
=
"siftfast: "
+
s
;
}
virtual
~
siftfast_exception
()
{}
char
const
*
what
()
const
{
return
_s
.
c_str
();
}
virtual
~
siftfast_exception
()
noexcept
{}
char
const
*
what
()
noexcept
const
{
return
_s
.
c_str
();
}
string
_s
;
};
...
...
Modules/Visualization/MonteverdiCore/include/mvdAbstractWorker.h
View file @
7fd7843d
...
...
@@ -102,7 +102,7 @@ public slots:
/**
* \brief Call the implemented do job/task routine.
*/
void
Do
();
void
Do
()
noexcept
;
/*-[ SIGNALS SECTION ]-----------------------------------------------------*/
...
...
Modules/Visualization/MonteverdiCore/include/mvdSystemError.h
View file @
7fd7843d
...
...
@@ -86,7 +86,7 @@ public:
SystemError
(
const
std
::
string
&
message
=
std
::
string
())
:
std
::
runtime_error
(
itksys
::
SystemTools
::
GetLastSystemError
()
+
": "
+
message
){};
/** \brief Destructor. */
~
SystemError
()
override
{};
~
SystemError
()
noexcept
override
{};
/*-[ PROTECTED SECTION ]---------------------------------------------------*/
...
...
Modules/Visualization/MonteverdiCore/src/mvdAbstractWorker.cxx
View file @
7fd7843d
...
...
@@ -77,7 +77,7 @@ AbstractWorker::~AbstractWorker()
}
/*****************************************************************************/
void
AbstractWorker
::
Do
()
void
AbstractWorker
::
Do
()
noexcept
{
QObject
*
result
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment