From e99b2abd7df5a4fb7cf75172e607d9f3620c1fd9 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Mon, 20 Oct 2025 13:18:09 +0200 Subject: [PATCH] style: canviat un ifndef per un pragma once --- source/resource_pack.hpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/source/resource_pack.hpp b/source/resource_pack.hpp index 45fda5c..3393fcc 100644 --- a/source/resource_pack.hpp +++ b/source/resource_pack.hpp @@ -1,5 +1,4 @@ -#ifndef RESOURCE_PACK_H -#define RESOURCE_PACK_H +#pragma once #include // Para size_t #include // Para uint8_t, uint32_t, uint64_t @@ -42,6 +41,4 @@ class ResourcePack { auto getResourceList() const -> std::vector; static const std::string DEFAULT_ENCRYPT_KEY; -}; - -#endif \ No newline at end of file +}; \ No newline at end of file