diff options
Diffstat (limited to 'src/tafreader.cpp')
-rw-r--r-- | src/tafreader.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tafreader.cpp b/src/tafreader.cpp index db465e9..0d28cd0 100644 --- a/src/tafreader.cpp +++ b/src/tafreader.cpp | |||
@@ -49,6 +49,8 @@ void Bu::TafReader::groupContent( Bu::TafGroup *pGroup ) | |||
49 | return; | 49 | return; |
50 | else if( c == '/' && la == '*' ) | 50 | else if( c == '/' && la == '*' ) |
51 | pGroup->addChild( readComment() ); | 51 | pGroup->addChild( readComment() ); |
52 | else if( c == ':' ) | ||
53 | throw TafException("Encountered stray ':' in taf stream."); | ||
52 | else | 54 | else |
53 | pGroup->addChild( readProperty() ); | 55 | pGroup->addChild( readProperty() ); |
54 | } | 56 | } |