diff options
author | stanleyk <stanleyk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2013-02-06 02:00:51 +0000 |
---|---|---|
committer | stanleyk <stanleyk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2013-02-06 02:00:51 +0000 |
commit | 2622e8ea11db1f7a459eee8cbb77770a3c1c560f (patch) | |
tree | fe59f9ba10a6a848797dd548d701934a1678e073 /TAO/tao | |
parent | 5e030faf84086ab02059fcbcc3faed224bd57b95 (diff) | |
download | ATCD-2622e8ea11db1f7a459eee8cbb77770a3c1c560f.tar.gz |
Fixed fuzz errors.
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/Storable_FlatFileStream.cpp | 2 | ||||
-rw-r--r-- | TAO/tao/Storable_FlatFileStream.h | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/TAO/tao/Storable_FlatFileStream.cpp b/TAO/tao/Storable_FlatFileStream.cpp index 3a5977c9dd8..eab6befbe72 100644 --- a/TAO/tao/Storable_FlatFileStream.cpp +++ b/TAO/tao/Storable_FlatFileStream.cpp @@ -419,7 +419,6 @@ TAO::Storable_FlatFileStream::restore_backup () void TAO::Storable_FlatFileStream::throw_on_read_error (Storable_State state) - throw (Storable_Read_Exception) { this->setstate (state); @@ -431,7 +430,6 @@ TAO::Storable_FlatFileStream::throw_on_read_error (Storable_State state) void TAO::Storable_FlatFileStream::throw_on_write_error (Storable_State state) - throw (Storable_Write_Exception) { this->setstate (state); diff --git a/TAO/tao/Storable_FlatFileStream.h b/TAO/tao/Storable_FlatFileStream.h index 10e5a9e4425..4eff8241312 100644 --- a/TAO/tao/Storable_FlatFileStream.h +++ b/TAO/tao/Storable_FlatFileStream.h @@ -99,13 +99,11 @@ namespace TAO /// Throw a Storable_Read_Exception if the state /// is not good due to a read error. - void throw_on_read_error (Storable_State state) - throw (Storable_Read_Exception); + void throw_on_read_error (Storable_State state); /// Throw a Storable_Write_Exception if the state /// is not good due to a write error. - void throw_on_write_error (Storable_State state) - throw (Storable_Write_Exception); + void throw_on_write_error (Storable_State state); ACE_CString backup_file_name (); |