From 81d76ebc9c126aea51c4ba0b55b6cf47714c4a73 Mon Sep 17 00:00:00 2001 From: Mark Oliver Mints <mmints@uni-koblenz.de> Date: Fri, 28 May 2021 11:40:12 +0200 Subject: [PATCH] [#33][Refac] Exchange include guards by --- include/vkcv/PipelineConfig.hpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/include/vkcv/PipelineConfig.hpp b/include/vkcv/PipelineConfig.hpp index 1ad6be8d..26ad7053 100644 --- a/include/vkcv/PipelineConfig.hpp +++ b/include/vkcv/PipelineConfig.hpp @@ -1,12 +1,10 @@ +#pragma once /** * @authors Mara Vogt, Mark Mints * @file src/vkcv/Pipeline.hpp * @brief Pipeline class to handle shader stages */ -#ifndef VKCV_PIPELINECONFIG_HPP -#define VKCV_PIPELINECONFIG_HPP - #include <vector> #include <cstdint> #include "vkcv/Handles.hpp" @@ -39,5 +37,4 @@ namespace vkcv { PassHandle m_PassHandle; }; -} -#endif //VKCV_PIPELINECONFIG_HPP +} \ No newline at end of file -- GitLab