diff --git a/alib2cli/src/parser/Parser.cpp b/alib2cli/src/parser/Parser.cpp index 0b3c98127111b8ae4fd899ac942acd0ff60dc47f..8707da1458b565c319ba3e97fe35251ec0bfc4bf 100644 --- a/alib2cli/src/parser/Parser.cpp +++ b/alib2cli/src/parser/Parser.cpp @@ -271,8 +271,8 @@ void Parser::result ( std::shared_ptr < StatementList > & list ) { } std::pair < bool, bool > Parser::introspect_cast_from_to ( ) { - bool from; - bool to; + bool from = false; + bool to = false; while ( check ( cli::Lexer::TokenType::COLON_SIGN ) ) { match ( cli::Lexer::TokenType::COLON_SIGN ); if ( check_nonreserved_kw ( "from" ) ) {