Improve include formatting

This commit is contained in:
Riyyi
2021-01-04 23:50:36 +01:00
parent 0b9f4715fc
commit 7a099a8f3d
+5 -5
View File
@@ -1,12 +1,12 @@
#ifndef SHADER_H #ifndef SHADER_H
#define SHADER_H #define SHADER_H
#include <cstdint> // std::int32_t, std::uint32_t #include <cstdint> // std::int32_t, std::uint32_t
#include <memory> #include <memory> // std::shared_ptr
#include <string> // std::string #include <string> // std::string
#include <unordered_map> // std::unordered_map
#include <glm/glm.hpp> #include <glm/glm.hpp>
#include <unordered_map>
namespace Inferno { namespace Inferno {
@@ -62,7 +62,7 @@ namespace Inferno {
private: private:
std::unordered_map<std::string, std::shared_ptr<Shader>> m_shaderList; std::unordered_map<std::string, std::shared_ptr<Shader>> m_shaderList;
}; };
} }