Skip to content
Snippets Groups Projects
Commit 5cec98ce authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Replace istream_input by string_input

This is to be used in unit tests
istream_input may be used in the future to allow interactive use of the code...
parent 145e2d9e
No related branches found
No related tags found
1 merge request!37Feature/language
...@@ -268,4 +268,4 @@ buildAST(InputT& input) ...@@ -268,4 +268,4 @@ buildAST(InputT& input)
} }
template std::unique_ptr<language::Node> buildAST(read_input<>& input); template std::unique_ptr<language::Node> buildAST(read_input<>& input);
template std::unique_ptr<language::Node> buildAST(istream_input<>& input); template std::unique_ptr<language::Node> buildAST(string_input<>& input);
...@@ -8,7 +8,4 @@ ...@@ -8,7 +8,4 @@
template <typename InputT> template <typename InputT>
std::unique_ptr<language::Node> buildAST(InputT& input); std::unique_ptr<language::Node> buildAST(InputT& input);
template <typename InputT>
std::unique_ptr<language::Node> buildAST(InputT& input);
#endif // AST_BUILDER_HPP #endif // AST_BUILDER_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment