Fix #include guards to match project structure
All checks were successful
ChaosTest CI / build-and-test (push) Successful in 1m10s

This commit is contained in:
hashlag
2026-01-02 21:31:55 +03:00
parent 52b490e39d
commit a93311cad1
4 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
#ifndef CHAOS_CIPHER_ARC4CRYPT_HPP
#define CHAOS_CIPHER_ARC4CRYPT_HPP
#ifndef CHAOS_CIPHER_ARC4_ARC4CRYPT_HPP
#define CHAOS_CIPHER_ARC4_ARC4CRYPT_HPP
#include "Arc4Gen.hpp"
#include "Service/SeArray.hpp"

View File

@@ -1,5 +1,5 @@
#ifndef CHAOS_CIPHER_ARC4GEN_HPP
#define CHAOS_CIPHER_ARC4GEN_HPP
#ifndef CHAOS_CIPHER_ARC4_ARC4GEN_HPP
#define CHAOS_CIPHER_ARC4_ARC4GEN_HPP
#include <array>
#include <cstdint>