From ca2996d66c7352736e16b2788930f02b50f97aa4 Mon Sep 17 00:00:00 2001 From: Rohith-Raju Date: Fri, 8 Mar 2024 22:29:00 +0530 Subject: [PATCH] update: workflow and headerfiles Signed-off-by: Rohith-Raju --- .github/workflows/workflow.yaml | 2 +- include/Parser.h | 1 + main.cpp | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index f57ddbe..45118ca 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -6,7 +6,7 @@ jobs: name: Build Project runs-on: ubuntu-latest steps: - - name: Checkout + - name: Checkout uses: actions/checkout@v4.1.1 with: submodules: true diff --git a/include/Parser.h b/include/Parser.h index 5b4d956..a42a649 100644 --- a/include/Parser.h +++ b/include/Parser.h @@ -7,6 +7,7 @@ #include "Expr.h" #include "Token.h" +#include #include class Parser { diff --git a/main.cpp b/main.cpp index 440ac71..e11f6f0 100644 --- a/main.cpp +++ b/main.cpp @@ -4,6 +4,7 @@ #include "Scanner.h" #include #include +#include void runCode(std::string source);