From 7a099a8f3d3ef86a2af6498f1b6ce5fc35d5b674 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Mon, 4 Jan 2021 23:50:36 +0100 Subject: [PATCH] Improve include formatting --- inferno/src/inferno/render/shader.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inferno/src/inferno/render/shader.h b/inferno/src/inferno/render/shader.h index abdb150..33f05b9 100644 --- a/inferno/src/inferno/render/shader.h +++ b/inferno/src/inferno/render/shader.h @@ -1,12 +1,12 @@ #ifndef SHADER_H #define SHADER_H -#include // std::int32_t, std::uint32_t -#include -#include // std::string +#include // std::int32_t, std::uint32_t +#include // std::shared_ptr +#include // std::string +#include // std::unordered_map #include -#include namespace Inferno { @@ -62,7 +62,7 @@ namespace Inferno { private: std::unordered_map> m_shaderList; - }; + }; }