summaryrefslogtreecommitdiff
path: root/openmpt123
diff options
context:
space:
mode:
authorJames Cowgill <jcowgill@debian.org>2018-07-28 21:51:40 +0800
committerJames Cowgill <jcowgill@debian.org>2018-07-28 21:51:40 +0800
commitb307520e10780536a1d4be5b81fc67d99b6815cd (patch)
tree0b5dd39582b4c0713037b8c17902152032524d27 /openmpt123
parent5dc6e89cb009da0ebe2a434f76db35414cd696ed (diff)
New upstream version 0.3.11
Diffstat (limited to 'openmpt123')
-rw-r--r--openmpt123/openmpt123.cpp16
-rw-r--r--openmpt123/openmpt123.hpp2
-rw-r--r--openmpt123/openmpt123_portaudio.hpp2
-rw-r--r--openmpt123/openmpt123_pulseaudio.hpp2
-rw-r--r--openmpt123/openmpt123_sdl.hpp2
-rw-r--r--openmpt123/openmpt123_sdl2.hpp2
-rw-r--r--openmpt123/openmpt123_waveout.hpp2
7 files changed, 14 insertions, 14 deletions
diff --git a/openmpt123/openmpt123.cpp b/openmpt123/openmpt123.cpp
index 5d9d82d..4db2dae 100644
--- a/openmpt123/openmpt123.cpp
+++ b/openmpt123/openmpt123.cpp
@@ -99,35 +99,35 @@ static const char * const license =
namespace openmpt123 {
struct silent_exit_exception : public std::exception {
- silent_exit_exception() throw() { }
+ silent_exit_exception() { }
};
struct show_license_exception : public std::exception {
- show_license_exception() throw() { }
+ show_license_exception() { }
};
struct show_credits_exception : public std::exception {
- show_credits_exception() throw() { }
+ show_credits_exception() { }
};
struct show_man_version_exception : public std::exception {
- show_man_version_exception() throw() { }
+ show_man_version_exception() { }
};
struct show_man_help_exception : public std::exception {
- show_man_help_exception() throw() { }
+ show_man_help_exception() { }
};
struct show_short_version_number_exception : public std::exception {
- show_short_version_number_exception() throw() { }
+ show_short_version_number_exception() { }
};
struct show_version_number_exception : public std::exception {
- show_version_number_exception() throw() { }
+ show_version_number_exception() { }
};
struct show_long_version_number_exception : public std::exception {
- show_long_version_number_exception() throw() { }
+ show_long_version_number_exception() { }
};
bool IsTerminal( int fd ) {
diff --git a/openmpt123/openmpt123.hpp b/openmpt123/openmpt123.hpp
index 0aebb92..8606398 100644
--- a/openmpt123/openmpt123.hpp
+++ b/openmpt123/openmpt123.hpp
@@ -15,7 +15,7 @@
namespace openmpt123 {
struct exception : public openmpt::exception {
- exception( const std::string & text ) throw() : openmpt::exception(text) { }
+ exception( const std::string & text ) : openmpt::exception(text) { }
};
struct show_help_exception {
diff --git a/openmpt123/openmpt123_portaudio.hpp b/openmpt123/openmpt123_portaudio.hpp
index e15e2f2..e598b86 100644
--- a/openmpt123/openmpt123_portaudio.hpp
+++ b/openmpt123/openmpt123_portaudio.hpp
@@ -20,7 +20,7 @@
namespace openmpt123 {
struct portaudio_exception : public exception {
- portaudio_exception( PaError code ) throw() : exception( Pa_GetErrorText( code ) ) { }
+ portaudio_exception( PaError code ) : exception( Pa_GetErrorText( code ) ) { }
};
typedef void (*PaUtilLogCallback ) (const char *log);
diff --git a/openmpt123/openmpt123_pulseaudio.hpp b/openmpt123/openmpt123_pulseaudio.hpp
index f6d7cba..389a60a 100644
--- a/openmpt123/openmpt123_pulseaudio.hpp
+++ b/openmpt123/openmpt123_pulseaudio.hpp
@@ -42,7 +42,7 @@ struct pulseaudio_exception : public exception {
return std::string();
}
}
- pulseaudio_exception( int error ) throw() : exception( error_to_string( error ) ) { }
+ pulseaudio_exception( int error ) : exception( error_to_string( error ) ) { }
};
class pulseaudio_stream_raii : public write_buffers_interface {
diff --git a/openmpt123/openmpt123_sdl.hpp b/openmpt123/openmpt123_sdl.hpp
index 2dba5b2..da444f3 100644
--- a/openmpt123/openmpt123_sdl.hpp
+++ b/openmpt123/openmpt123_sdl.hpp
@@ -26,7 +26,7 @@
namespace openmpt123 {
struct sdl_exception : public exception {
- sdl_exception( int /*code*/ ) throw() : exception( "SDL error" ) { }
+ sdl_exception( int /*code*/ ) : exception( "SDL error" ) { }
};
class sdl_stream_raii : public write_buffers_blocking_wrapper {
diff --git a/openmpt123/openmpt123_sdl2.hpp b/openmpt123/openmpt123_sdl2.hpp
index a16b55b..eec2737 100644
--- a/openmpt123/openmpt123_sdl2.hpp
+++ b/openmpt123/openmpt123_sdl2.hpp
@@ -26,7 +26,7 @@
namespace openmpt123 {
struct sdl2_exception : public exception {
- sdl2_exception( int /*code*/ ) throw() : exception( "SDL2 error" ) { }
+ sdl2_exception( int /*code*/ ) : exception( "SDL2 error" ) { }
};
static void check_sdl2_error( int e ) {
diff --git a/openmpt123/openmpt123_waveout.hpp b/openmpt123/openmpt123_waveout.hpp
index 9a245fc..baf7b99 100644
--- a/openmpt123/openmpt123_waveout.hpp
+++ b/openmpt123/openmpt123_waveout.hpp
@@ -18,7 +18,7 @@
namespace openmpt123 {
struct waveout_exception : public exception {
- waveout_exception() throw() : exception( "waveout" ) { }
+ waveout_exception() : exception( "waveout" ) { }
};
class waveout_stream_raii : public write_buffers_interface {