summaryrefslogtreecommitdiff
path: root/RtAudio.cpp
diff options
context:
space:
mode:
authorStephen Sinclair <radarsat1@users.noreply.github.com>2017-08-22 20:15:14 -0300
committerGitHub <noreply@github.com>2017-08-22 20:15:14 -0300
commitd75b9e7f29f2423a6e3b1d39b3ef76c6a8d5025e (patch)
tree983c4e5bf38d5520660752ceed652ebe35b168a3 /RtAudio.cpp
parent142d06e9378de94f54e8c403bebeaa5f8d0cfae9 (diff)
parent8190c80422ac07a987e51ba6bec61005acf25d09 (diff)
Merge pull request #67 from antis81/refactor/cpp0x-compatibility
C++0x compatible exception semantics: remove throw()
Diffstat (limited to 'RtAudio.cpp')
-rw-r--r--RtAudio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/RtAudio.cpp b/RtAudio.cpp
index 2306c74..91bd221 100644
--- a/RtAudio.cpp
+++ b/RtAudio.cpp
@@ -92,12 +92,12 @@ const unsigned int RtApi::SAMPLE_RATES[] = {
//
// *************************************************** //
-std::string RtAudio :: getVersion( void ) throw()
+std::string RtAudio :: getVersion( void )
{
return RTAUDIO_VERSION;
}
-void RtAudio :: getCompiledApi( std::vector<RtAudio::Api> &apis ) throw()
+void RtAudio :: getCompiledApi( std::vector<RtAudio::Api> &apis )
{
apis.clear();
@@ -209,7 +209,7 @@ RtAudio :: RtAudio( RtAudio::Api api )
throw( RtAudioError( errorText, RtAudioError::UNSPECIFIED ) );
}
-RtAudio :: ~RtAudio() throw()
+RtAudio :: ~RtAudio()
{
if ( rtapi_ )
delete rtapi_;