Apply header guard check

This commit is contained in:
Jérôme Leclercq
2021-10-26 15:52:46 +02:00
parent b85f6b68ac
commit 93ec196dc4
476 changed files with 1414 additions and 1327 deletions

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_CRC32_HPP
#define NAZARA_HASH_CRC32_HPP
#ifndef NAZARA_CORE_HASH_CRC32_HPP
#define NAZARA_CORE_HASH_CRC32_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_CRC32_HPP
#endif // NAZARA_CORE_HASH_CRC32_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_CRC64_HPP
#define NAZARA_HASH_CRC64_HPP
#ifndef NAZARA_CORE_HASH_CRC64_HPP
#define NAZARA_CORE_HASH_CRC64_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -31,4 +31,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_CRC64_HPP
#endif // NAZARA_CORE_HASH_CRC64_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_FLETCHER16_HPP
#define NAZARA_HASH_FLETCHER16_HPP
#ifndef NAZARA_CORE_HASH_FLETCHER16_HPP
#define NAZARA_CORE_HASH_FLETCHER16_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_FLETCHER16_HPP
#endif // NAZARA_CORE_HASH_FLETCHER16_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_MD5_HPP
#define NAZARA_HASH_MD5_HPP
#ifndef NAZARA_CORE_HASH_MD5_HPP
#define NAZARA_CORE_HASH_MD5_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_MD5_HPP
#endif // NAZARA_CORE_HASH_MD5_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_SHA1_HPP
#define NAZARA_HASH_SHA1_HPP
#ifndef NAZARA_CORE_HASH_SHA1_HPP
#define NAZARA_CORE_HASH_SHA1_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_SHA1_HPP
#endif // NAZARA_CORE_HASH_SHA1_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_SHA224_HPP
#define NAZARA_HASH_SHA224_HPP
#ifndef NAZARA_CORE_HASH_SHA224_HPP
#define NAZARA_CORE_HASH_SHA224_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_SHA224_HPP
#endif // NAZARA_CORE_HASH_SHA224_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_SHA256_HPP
#define NAZARA_HASH_SHA256_HPP
#ifndef NAZARA_CORE_HASH_SHA256_HPP
#define NAZARA_CORE_HASH_SHA256_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_SHA256_HPP
#endif // NAZARA_CORE_HASH_SHA256_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_SHA384_HPP
#define NAZARA_HASH_SHA384_HPP
#ifndef NAZARA_CORE_HASH_SHA384_HPP
#define NAZARA_CORE_HASH_SHA384_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_SHA384_HPP
#endif // NAZARA_CORE_HASH_SHA384_HPP

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_HASH_SHA512_HPP
#define NAZARA_HASH_SHA512_HPP
#ifndef NAZARA_CORE_HASH_SHA512_HPP
#define NAZARA_CORE_HASH_SHA512_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -33,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_SHA512_HPP
#endif // NAZARA_CORE_HASH_SHA512_HPP

View File

@@ -2,8 +2,10 @@
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#ifndef NAZARA_HASH_WHIRLPOOL_HPP
#define NAZARA_HASH_WHIRLPOOL_HPP
#pragma once
#ifndef NAZARA_CORE_HASH_WHIRLPOOL_HPP
#define NAZARA_CORE_HASH_WHIRLPOOL_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/AbstractHash.hpp>
@@ -31,4 +33,4 @@ namespace Nz
};
}
#endif // NAZARA_HASH_WHIRLPOOL_HPP
#endif // NAZARA_CORE_HASH_WHIRLPOOL_HPP