VapourSynth-llvmexpr
Loading...
Searching...
No Matches
PostfixHelper.hpp
Go to the documentation of this file.
1
19
20#ifndef LLVMEXPR_FRONTEND_INFIX2POSTFIX_POSTFIXHELPER_HPP
21#define LLVMEXPR_FRONTEND_INFIX2POSTFIX_POSTFIXHELPER_HPP
22
23#include <cstdint>
24#include <string>
25
26namespace infix2postfix {
27
28enum class PostfixMode : std::uint8_t {
31};
32
33int compute_postfix_stack_effect(const std::string& postfix_expr,
34 PostfixMode mode, int line, int num_inputs,
35 int num_intermediate_inputs = 0);
36
37} // namespace infix2postfix
38
39#endif // LLVMEXPR_FRONTEND_INFIX2POSTFIX_POSTFIXHELPER_HPP
int compute_postfix_stack_effect(const std::string &postfix_expr, PostfixMode mode, int line, int num_inputs, int num_intermediate_inputs)