We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23891ab commit 5dfd7d0Copy full SHA for 5dfd7d0
instream.cc
@@ -19,7 +19,7 @@
19
20
#include "instream.hh"
21
22
-InStream::InStream(const char *fName) throw (InFileException):
+InStream::InStream(const char *fName):
23
fileName_(fName),
24
str_((!fileName_.compare("-"))
25
? std::cin
instream.hh
@@ -36,7 +36,7 @@ struct InFileException {
36
37
class InStream {
38
public:
39
- InStream(const char *fileName) throw (InFileException);
+ InStream(const char *fileName);
40
~InStream();
41
42
const std::string& fileName() const { return fileName_; }
0 commit comments