From ca94cebba290c350d7a160aee7766259e5651765 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Wed, 5 Feb 2025 13:53:08 +0100 Subject: [PATCH] chore: add missing cstdint include --- include/tug/Core/Numeric/SimulationInput.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/tug/Core/Numeric/SimulationInput.hpp b/include/tug/Core/Numeric/SimulationInput.hpp index 202619c..d68effc 100644 --- a/include/tug/Core/Numeric/SimulationInput.hpp +++ b/include/tug/Core/Numeric/SimulationInput.hpp @@ -1,5 +1,6 @@ #pragma once +#include #include #include @@ -18,4 +19,4 @@ template struct SimulationInput { const T deltaRow; const T deltaCol; }; -} // namespace tug \ No newline at end of file +} // namespace tug