diff options
| author | Nils Fenner <nilsfenner@web.de> | 2016-08-09 08:08:39 +0200 |
|---|---|---|
| committer | Nils Fenner <nilsfenner@web.de> | 2016-08-09 08:08:39 +0200 |
| commit | 8190c80422ac07a987e51ba6bec61005acf25d09 (patch) | |
| tree | 38a10abecf3dfc744666d9b0a314fcd096588d43 /RtAudio.cpp | |
| parent | 3cfbc9a5f3336b6015c615aae8f87b2a4eea8cc4 (diff) | |
refactor: C++0x compatible exception semantics
Diffstat (limited to 'RtAudio.cpp')
| -rw-r--r-- | RtAudio.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/RtAudio.cpp b/RtAudio.cpp index 882fa0e..8fa49a3 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_;
|
