summaryrefslogtreecommitdiff
path: root/src/options/open_ostream.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-01-17 12:16:17 -0800
committerGitHub <noreply@github.com>2018-01-17 12:16:17 -0800
commit248b977790b429ebfd22481462193e3e35c57ce2 (patch)
tree9a59a408d113d6a3347f013c2492291769406e82 /src/options/open_ostream.h
parent4538f5fe95758f2507c191ab39175491f24e6f67 (diff)
Removes yet more throw specifiers. Updating the documentation as needed. (#1518)
Diffstat (limited to 'src/options/open_ostream.h')
-rw-r--r--src/options/open_ostream.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/options/open_ostream.h b/src/options/open_ostream.h
index 7630c3bf0..9359d5cda 100644
--- a/src/options/open_ostream.h
+++ b/src/options/open_ostream.h
@@ -47,8 +47,7 @@ class OstreamOpener {
* returns <true, stream> where stream is a ostream allocated by new.
* The caller is in this case the owner of the allocated memory.
*/
- std::pair<bool, std::ostream*> open(const std::string& name) const
- throw(OptionException);
+ std::pair<bool, std::ostream*> open(const std::string& name) const;
private:
const char* d_channelName;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback