summaryrefslogtreecommitdiff
path: root/tests/playsaw.cpp
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2019-07-30 17:23:28 -0400
committerGary Scavone <gary@music.mcgill.ca>2019-07-30 17:23:28 -0400
commitba23fd33d7cf5d372d487b5c8a91f569875a001c (patch)
tree54fb6841a7d996f231982383c6da1a7da95d2042 /tests/playsaw.cpp
parent6c7651fd65e2d6d423836cee77a48d1b238b2595 (diff)
Removed RtAudioError class and created a new enum for error types. Only implemented for RtApiCore and RtApiDummy, not rtaudio_c.
Diffstat (limited to 'tests/playsaw.cpp')
-rw-r--r--tests/playsaw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/playsaw.cpp b/tests/playsaw.cpp
index e875313..56e693f 100644
--- a/tests/playsaw.cpp
+++ b/tests/playsaw.cpp
@@ -64,7 +64,7 @@ void usage( void ) {
exit( 0 );
}
-void errorCallback( RtAudioError::Type /*type*/, const std::string &errorText )
+void errorCallback( RtAudioErrorType /*type*/, const std::string &errorText )
{
// This example error handling function simply outputs the error message to stderr.
std::cerr << "\nerrorCallback: " << errorText << "\n\n";