cleanup: replace remaining #ifndef #define with #pragma once

This commit is contained in:
Loic Blot
2023-10-09 08:57:29 +02:00
committed by sfan5
parent 4a7d3de89a
commit dd14486d3f
23 changed files with 24 additions and 75 deletions

View File

@ -2,8 +2,7 @@
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __IRR_CORE_UTIL_H_INCLUDED__
#define __IRR_CORE_UTIL_H_INCLUDED__
#pragma once
#include "irrString.h"
#include "path.h"
@ -202,4 +201,3 @@ inline bool isupper(s32 c) { return c >= 'A' && c <= 'Z'; }
} // end namespace core
} // end namespace irr
#endif