OSDN Git Service

2003-01-31 Frank Ch. Eigler <fche@redhat.com>
authorfche <fche>
Fri, 31 Jan 2003 14:55:45 +0000 (14:55 +0000)
committerfche <fche>
Fri, 31 Jan 2003 14:55:45 +0000 (14:55 +0000)
* components.h, compAudio.cxx: Add missing throw() to cygwin_audio dtor.

sid/component/audio/ChangeLog
sid/component/audio/compAudio.cxx
sid/component/audio/components.h

index b054538..2817657 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-31  Frank Ch. Eigler  <fche@redhat.com>
+
+       * components.h, compAudio.cxx: Add missing throw() to cygwin_audio dtor.
+
 2001-07-13  Ben Elliston  <bje@redhat.com>
 
        * Makefile.am (check-local): Rename target from "checkme".
index 1d538f1..a0852bc 100644 (file)
@@ -561,7 +561,7 @@ cygwin_audio::cygwin_audio()
 }
 
 
-cygwin_audio::~cygwin_audio () 
+cygwin_audio::~cygwin_audio () throw ()
 {
 }
 
index 3962287..0b75e29 100644 (file)
@@ -323,7 +323,7 @@ class cygwin_audio: public generic_audio
 {
 public:
   cygwin_audio ();
-  ~cygwin_audio ();
+  ~cygwin_audio () throw ();
 
 private:
   host_int_2 rx_buffer_size;