From 9d75def2b5c1e55362d705a5311ec5c192e48686 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 14 Apr 2021 15:35:52 +1000 Subject: [PATCH] build: avoid double underscore header guards --- pipeline_cache.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pipeline_cache.hpp b/pipeline_cache.hpp index be12c0f..0958c3f 100644 --- a/pipeline_cache.hpp +++ b/pipeline_cache.hpp @@ -7,8 +7,7 @@ * 2016-2017, Danny Robson */ -#ifndef __VK_PIPELINE_CACHE_HPP -#define __VK_PIPELINE_CACHE_HPP +#pragma once #include "./object.hpp" #include "./fwd.hpp" @@ -22,5 +21,3 @@ namespace cruft::vk { size_t get (const device&, void *dst, size_t len) const; }; } - -#endif