summaryrefslogtreecommitdiff
path: root/src/parser/input.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/input.cpp')
-rw-r--r--src/parser/input.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parser/input.cpp b/src/parser/input.cpp
index 2c4671b93..36e96516f 100644
--- a/src/parser/input.cpp
+++ b/src/parser/input.cpp
@@ -57,7 +57,7 @@ InputStream *Input::getInputStream() {
Input* Input::newFileInput(InputLanguage lang,
const std::string& filename,
bool useMmap)
- throw (InputStreamException) {
+ throw (InputStreamException, AssertionException) {
AntlrInputStream *inputStream =
AntlrInputStream::newFileInputStream(filename,useMmap);
return AntlrInput::newInput(lang,*inputStream);
@@ -66,7 +66,7 @@ Input* Input::newFileInput(InputLanguage lang,
Input* Input::newStreamInput(InputLanguage lang,
std::istream& input,
const std::string& name)
- throw (InputStreamException) {
+ throw (InputStreamException, AssertionException) {
AntlrInputStream *inputStream =
AntlrInputStream::newStreamInputStream(input,name);
return AntlrInput::newInput(lang,*inputStream);
@@ -75,7 +75,7 @@ Input* Input::newStreamInput(InputLanguage lang,
Input* Input::newStringInput(InputLanguage lang,
const std::string& str,
const std::string& name)
- throw (InputStreamException) {
+ throw (InputStreamException, AssertionException) {
AntlrInputStream *inputStream = AntlrInputStream::newStringInputStream(str,name);
return AntlrInput::newInput(lang,*inputStream);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback