From 84650ce8015ce69f2307f1a1dd0206be3069b1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Relvas?= <53081@alunos.isel.ipl.pt> Date: Thu, 13 Mar 2025 14:47:36 +0000 Subject: [PATCH] =?UTF-8?q?Corrigir=20utiliza=C3=A7=C3=A3o=20impl=C3=ADcit?= =?UTF-8?q?a=20de=20stdint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Alguns compiladores não permitem a utilização de tipos stdint por defeito. A inclusão de stdint.h resolve este problema. Signed-off-by: José Relvas <53081@alunos.isel.ipl.pt> --- src/expression_base.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/expression_base.h b/src/expression_base.h index a490f16..abc4f6c 100644 --- a/src/expression_base.h +++ b/src/expression_base.h @@ -17,6 +17,8 @@ limitations under the License. #ifndef EXPRESSION_BASE_H #define EXPRESSION_BASE_H +#include + #include "value_type.h" #include "location.h" #include "visitor.h"