Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenWalnut Core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
44
Issues
44
List
Boards
Labels
Service Desk
Milestones
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
8caa9740
Commit
8caa9740
authored
Aug 22, 2017
by
Alexander Wiebel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FIX
#412
] removed deprecated dynamic exception specifications
parent
3660e97d
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
16 additions
and
16 deletions
+16
-16
src/core/common/math/linearAlgebra/WMatrixFixed.h
src/core/common/math/linearAlgebra/WMatrixFixed.h
+2
-2
src/core/dataHandler/WEEGChannelInfo.cpp
src/core/dataHandler/WEEGChannelInfo.cpp
+1
-1
src/core/dataHandler/WEEGChannelInfo.h
src/core/dataHandler/WEEGChannelInfo.h
+1
-1
src/core/dataHandler/WEEGPositionsLibrary.cpp
src/core/dataHandler/WEEGPositionsLibrary.cpp
+1
-1
src/core/dataHandler/WEEGPositionsLibrary.h
src/core/dataHandler/WEEGPositionsLibrary.h
+1
-1
src/core/dataHandler/io/WReader.cpp
src/core/dataHandler/io/WReader.cpp
+3
-3
src/core/dataHandler/io/WReader.h
src/core/dataHandler/io/WReader.h
+3
-3
src/modules/data/io/WReaderEEG.cpp
src/modules/data/io/WReaderEEG.cpp
+1
-1
src/modules/data/io/WReaderEEG.h
src/modules/data/io/WReaderEEG.h
+1
-1
src/modules/eegView/WEEGEvent.cpp
src/modules/eegView/WEEGEvent.cpp
+1
-1
src/modules/eegView/WEEGEvent.h
src/modules/eegView/WEEGEvent.h
+1
-1
No files found.
src/core/common/math/linearAlgebra/WMatrixFixed.h
View file @
8caa9740
...
...
@@ -1000,7 +1000,7 @@ public:
*
* \throw WOutOfBounds if the specified index is invalid
*/
ValueT
&
at
(
size_t
row
,
size_t
col
)
throw
(
WOutOfBounds
)
ValueT
&
at
(
size_t
row
,
size_t
col
)
{
if
(
(
row
>=
Rows
)
||
(
col
>=
Cols
)
)
{
...
...
@@ -1023,7 +1023,7 @@ public:
*
* \throw WOutOfBounds if the specified index is invalid
*/
const
ValueT
&
at
(
size_t
row
,
size_t
col
)
const
throw
(
WOutOfBounds
)
const
ValueT
&
at
(
size_t
row
,
size_t
col
)
const
{
if
(
(
row
>=
Rows
)
||
(
col
>=
Cols
)
)
{
...
...
src/core/dataHandler/WEEGChannelInfo.cpp
View file @
8caa9740
...
...
@@ -82,7 +82,7 @@ std::string WEEGChannelInfo::getLabel() const
return
m_label
;
}
WPosition
WEEGChannelInfo
::
getPosition
()
const
throw
(
WDHException
)
WPosition
WEEGChannelInfo
::
getPosition
()
const
{
if
(
m_hasPosition
)
{
...
...
src/core/dataHandler/WEEGChannelInfo.h
View file @
8caa9740
...
...
@@ -78,7 +78,7 @@ public:
*
* \return position
*/
WPosition
getPosition
()
const
throw
(
WDHException
)
;
WPosition
getPosition
()
const
;
protected:
private:
...
...
src/core/dataHandler/WEEGPositionsLibrary.cpp
View file @
8caa9740
...
...
@@ -40,7 +40,7 @@ WEEGPositionsLibrary::WEEGPositionsLibrary( const std::map< std::string, WPositi
}
}
WPosition
WEEGPositionsLibrary
::
getPosition
(
std
::
string
label
)
const
throw
(
WOutOfBounds
)
WPosition
WEEGPositionsLibrary
::
getPosition
(
std
::
string
label
)
const
{
std
::
map
<
std
::
string
,
WPosition
>::
const_iterator
iter
=
m_positions
.
find
(
string_utils
::
toUpper
(
label
)
);
...
...
src/core/dataHandler/WEEGPositionsLibrary.h
View file @
8caa9740
...
...
@@ -53,7 +53,7 @@ public:
* \param label label of the electrode
* \return position of the electrode
*/
WPosition
getPosition
(
std
::
string
label
)
const
throw
(
WOutOfBounds
)
;
WPosition
getPosition
(
std
::
string
label
)
const
;
protected:
private:
...
...
src/core/dataHandler/io/WReader.cpp
View file @
8caa9740
...
...
@@ -28,17 +28,17 @@
#include "../exceptions/WDHNoSuchFile.h"
#include "WReader.h"
WReader
::
WReader
(
std
::
string
fname
)
throw
(
WDHNoSuchFile
)
WReader
::
WReader
(
std
::
string
fname
)
{
setFilename
(
fname
);
// not in constructor list since fileExcsits check
}
void
WReader
::
setFileName
(
std
::
string
fname
)
throw
(
WDHNoSuchFile
)
void
WReader
::
setFileName
(
std
::
string
fname
)
{
setFilename
(
fname
);
}
void
WReader
::
setFilename
(
std
::
string
fname
)
throw
(
WDHNoSuchFile
)
void
WReader
::
setFilename
(
std
::
string
fname
)
{
m_fname
=
fname
;
if
(
!
fileExists
(
m_fname
)
)
...
...
src/core/dataHandler/io/WReader.h
View file @
8caa9740
...
...
@@ -45,7 +45,7 @@ public:
* \param fname path to file which should be loaded
* \throws WDHNoSuchFile
*/
explicit
WReader
(
std
::
string
fname
)
throw
(
WDHNoSuchFile
)
;
explicit
WReader
(
std
::
string
fname
);
/**
* Reset the file name and checks if it exists.
...
...
@@ -54,7 +54,7 @@ public:
* \throws WDHNoSuchFile
* \deprecated use setFilename instead.
*/
OW_API_DEPRECATED
void
setFileName
(
std
::
string
fname
)
throw
(
WDHNoSuchFile
)
;
OW_API_DEPRECATED
void
setFileName
(
std
::
string
fname
);
/**
* Reset the file name and checks if it exists.
...
...
@@ -62,7 +62,7 @@ public:
* \param fname file name
* \throws WDHNoSuchFile
*/
void
setFilename
(
std
::
string
fname
)
throw
(
WDHNoSuchFile
)
;
void
setFilename
(
std
::
string
fname
);
protected:
std
::
string
m_fname
;
//!< Absolute path of the file to read from
...
...
src/modules/data/io/WReaderEEG.cpp
View file @
8caa9740
...
...
@@ -32,7 +32,7 @@
#include "WReaderEEG.h"
WReaderEEG
::
WReaderEEG
(
std
::
string
fileName
)
throw
(
WDHIOFailure
)
WReaderEEG
::
WReaderEEG
(
std
::
string
fileName
)
:
WReader
(
fileName
)
{
}
...
...
src/modules/data/io/WReaderEEG.h
View file @
8caa9740
...
...
@@ -45,7 +45,7 @@ protected:
* \param fileName Path to be loaded
* \throw WDHIOFailure in case of an error
*/
explicit
WReaderEEG
(
std
::
string
fileName
)
throw
(
WDHIOFailure
)
;
explicit
WReaderEEG
(
std
::
string
fileName
);
/**
* Load electrode positions from ELC file with same name
...
...
src/modules/eegView/WEEGEvent.cpp
View file @
8caa9740
...
...
@@ -55,7 +55,7 @@ WEEGEvent::WEEGEvent( double time,
osg
::
ref_ptr
<
WGEGroupNode
>
parentNode
,
bool
snapToDipole
,
bool
proofOfConcept
,
boost
::
shared_ptr
<
WDataSetDipoles
>
dipoles
)
throw
(
WOutOfBounds
)
boost
::
shared_ptr
<
WDataSetDipoles
>
dipoles
)
:
m_time
(
time
),
m_parentNode
(
parentNode
)
{
...
...
src/modules/eegView/WEEGEvent.h
View file @
8caa9740
...
...
@@ -65,7 +65,7 @@ public:
osg
::
ref_ptr
<
WGEGroupNode
>
parentNode
,
bool
snapToDipole
,
bool
proofOfConcept
,
boost
::
shared_ptr
<
WDataSetDipoles
>
dipoles
)
throw
(
WOutOfBounds
)
;
boost
::
shared_ptr
<
WDataSetDipoles
>
dipoles
);
/**
* Constructor for an empty event
...
...
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