build: avoid double underscore header guards

This commit is contained in:
Danny Robson 2021-04-14 15:35:52 +10:00
parent dd9ec6c401
commit 9d75def2b5
1 changed files with 1 additions and 4 deletions

View File

@ -7,8 +7,7 @@
* 2016-2017, Danny Robson <danny@nerdcruft.net>
*/
#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