From caa983ecad04663dc9c98c51d2abd1b7baec698d Mon Sep 17 00:00:00 2001 From: Reece Date: Thu, 30 Sep 2021 15:57:41 +0100 Subject: [PATCH] [*] Major change in include convention --- Source/Async/Async.cpp | 2 +- Source/Async/AsyncApp.cpp | 4 ++-- Source/Async/Schedular.cpp | 2 +- Source/Async/WorkItem.cpp | 2 +- Source/Compression/BlockCompressor.cpp | 2 +- Source/Compression/BlockDecompressor.cpp | 2 +- Source/Compression/Compression.cpp | 2 +- Source/Compression/StreamCompression.cpp | 2 +- Source/Console/Commands/Commands.cpp | 2 +- Source/Console/Console.cpp | 2 +- Source/Console/ConsoleFIO/ConsoleFIO.cpp | 2 +- Source/Console/ConsoleMessage.cpp | 2 +- Source/Console/ConsoleStd/ConsoleStd.cpp | 4 ++-- Source/Console/ConsoleWxWidgets/ConsoleWxWidgets.cpp | 6 +++--- Source/Console/Flusher.cpp | 2 +- Source/Console/Hooks/Hooks.cpp | 2 +- Source/Crypto.cpp | 2 +- Source/Crypto/AES/Aes.cpp | 4 ++-- Source/Crypto/Crypto.cpp | 2 +- Source/Crypto/Crypto.hpp | 4 ++-- Source/Crypto/ECC/ECC.cpp | 2 +- Source/Crypto/ECC/ECCCurves.cpp | 2 +- Source/Crypto/ECC/ECCGeneric.cpp | 2 +- Source/Crypto/ECC/ECCX25519.cpp | 2 +- Source/Crypto/ECC/ECCx25519Utils.cpp | 2 +- Source/Crypto/ECC/PrivateECCImpl.cpp | 2 +- Source/Crypto/ECC/PublicECCImpl.cpp | 2 +- Source/Crypto/PEM/PEM.cpp | 2 +- Source/Crypto/RSA/RSAPrivate.cpp | 2 +- Source/Crypto/RSA/RSAPublic.cpp | 2 +- Source/Crypto/X509/x509.cpp | 2 +- Source/Debug/Debug.cpp | 4 ++-- Source/Debug/ExceptionWatcher.Win32.cpp | 6 +++--- Source/Debug/Panic.cpp | 4 ++-- Source/Extensions/LTC/LTC.cpp | 2 +- Source/Extensions/LTM/LTM.cpp | 2 +- Source/Extensions/MBedTls/MBedTLS.cpp | 2 +- Source/Extensions/Win32/DarkTheme.cpp | 2 +- Source/HWInfo/CpuInfo.cpp | 2 +- Source/HWInfo/HWInfo.cpp | 2 +- Source/HWInfo/RamInfo.cpp | 2 +- Source/Hashing/CommonDigests.cpp | 2 +- Source/Hashing/HashStream.cpp | 2 +- Source/Hashing/Hashing.cpp | 2 +- Source/IO/FS/Async.NT.cpp | 2 +- Source/IO/FS/FS.Generic.cpp | 4 ++-- Source/IO/FS/FS.NT.cpp | 4 ++-- Source/IO/FS/FS.Unix.cpp | 4 ++-- Source/IO/FS/FS.cpp | 4 ++-- Source/IO/FS/FileStream.Generic.cpp | 2 +- Source/IO/FS/FileStream.NT.cpp | 2 +- Source/IO/FS/FileStream.Unix.cpp | 2 +- Source/IO/FS/Resources.cpp | 2 +- Source/Locale/Encoding/ConvertInternal.cpp | 2 +- Source/Locale/Encoding/EncoderAdapter.cpp | 2 +- Source/Locale/Encoding/EncoderIConv.cpp | 2 +- Source/Locale/Encoding/EncoderNSL.cpp | 2 +- Source/Locale/Encoding/Encoding.cpp | 2 +- Source/Locale/Locale.cpp | 2 +- Source/Memory/ByteBuffer.cpp | 2 +- Source/Memory/DefaultHeap.cpp | 2 +- Source/Memory/Heap.cpp | 2 +- Source/Memory/Memory.cpp | 2 +- Source/Parse/Base32.cpp | 2 +- Source/Parse/Base64.cpp | 2 +- Source/Parse/Hex.cpp | 2 +- Source/Parse/Parser.cpp | 2 +- Source/Process/Paths.cpp | 2 +- Source/Process/Process.cpp | 2 +- Source/Process/ProcessMap.Win32.cpp | 2 +- Source/Processes/Open.Win32.cpp | 2 +- Source/Processes/Process.Win32.cpp | 2 +- Source/Processes/Processes.cpp | 2 +- Source/RNG/RNG.cpp | 2 +- Source/RNG/WELL.cpp | 2 +- Source/RNG/mtwister.cpp | 2 +- Source/Registry/Registry.cpp | 2 +- Source/Telemetry/Telemetry.cpp | 4 ++-- Source/Threading/Primitives/ConditionEx.cpp | 2 +- Source/Threading/Primitives/ConditionMutex.Generic.cpp | 2 +- Source/Threading/Primitives/ConditionMutex.NT.cpp | 2 +- Source/Threading/Primitives/ConditionMutex.Unix.cpp | 4 ++-- Source/Threading/Primitives/ConditionVariable.Generic.cpp | 2 +- Source/Threading/Primitives/ConditionVariable.NT.cpp | 2 +- Source/Threading/Primitives/ConditionVariable.Unix.cpp | 2 +- Source/Threading/Primitives/CriticalSection.cpp | 2 +- Source/Threading/Primitives/Event.cpp | 2 +- Source/Threading/Primitives/Mutex.Generic.cpp | 2 +- Source/Threading/Primitives/Mutex.NT.cpp | 2 +- Source/Threading/Primitives/Mutex.Unix.cpp | 4 ++-- Source/Threading/Primitives/RWLock.cpp | 2 +- Source/Threading/Primitives/Semaphore.Generic.cpp | 2 +- Source/Threading/Primitives/Semaphore.NT.cpp | 2 +- Source/Threading/Primitives/Semaphore.Unix.cpp | 4 ++-- Source/Threading/Primitives/SpinLock.cpp | 2 +- Source/Threading/Sleep.cpp | 2 +- Source/Threading/Threads/OSThread.cpp | 2 +- Source/Threading/Threads/TLSView.cpp | 2 +- Source/Threading/Threads/ThreadHandles.cpp | 2 +- Source/Threading/Threads/Threads.cpp | 2 +- Source/Threading/WaitFor.cpp | 2 +- Source/Time/Clock.cpp | 2 +- 102 files changed, 120 insertions(+), 120 deletions(-) diff --git a/Source/Async/Async.cpp b/Source/Async/Async.cpp index 17c1d9fa..cb7786c0 100644 --- a/Source/Async/Async.cpp +++ b/Source/Async/Async.cpp @@ -5,7 +5,7 @@ Date: 2021-6-26 Author: Reece ***/ -#include +#include #include "Async.hpp" #include "Schedular.hpp" diff --git a/Source/Async/AsyncApp.cpp b/Source/Async/AsyncApp.cpp index 9d0a7ee1..0af247db 100644 --- a/Source/Async/AsyncApp.cpp +++ b/Source/Async/AsyncApp.cpp @@ -5,12 +5,12 @@ Date: 2021-6-26 Author: Reece ***/ -#include +#include #include "Async.hpp" #include "AsyncApp.hpp" #include "WorkItem.hpp" #include "Schedular.hpp" -#include +#include namespace Aurora::Async { diff --git a/Source/Async/Schedular.cpp b/Source/Async/Schedular.cpp index 6061b3d6..77a2032a 100644 --- a/Source/Async/Schedular.cpp +++ b/Source/Async/Schedular.cpp @@ -5,7 +5,7 @@ Date: 2021-6-26 Author: Reece ***/ -#include +#include #include "Async.hpp" #include "Schedular.hpp" #include "AsyncApp.hpp" diff --git a/Source/Async/WorkItem.cpp b/Source/Async/WorkItem.cpp index 609a054a..b0ecd12f 100644 --- a/Source/Async/WorkItem.cpp +++ b/Source/Async/WorkItem.cpp @@ -5,7 +5,7 @@ Date: 2021-6-26 Author: Reece ***/ -#include +#include #include "Async.hpp" #include "WorkItem.hpp" #include "AsyncApp.hpp" diff --git a/Source/Compression/BlockCompressor.cpp b/Source/Compression/BlockCompressor.cpp index 295d0542..70de3e34 100644 --- a/Source/Compression/BlockCompressor.cpp +++ b/Source/Compression/BlockCompressor.cpp @@ -5,7 +5,7 @@ Date: 2021-6-17 Author: Reece ***/ -#include +#include #include "Compression.hpp" #include "BlockCompressor.hpp" diff --git a/Source/Compression/BlockDecompressor.cpp b/Source/Compression/BlockDecompressor.cpp index 8a30b2d6..a288f75c 100644 --- a/Source/Compression/BlockDecompressor.cpp +++ b/Source/Compression/BlockDecompressor.cpp @@ -5,7 +5,7 @@ Date: 2021-6-17 Author: Reece ***/ -#include +#include #include "Compression.hpp" #include "BlockDecompressor.hpp" diff --git a/Source/Compression/Compression.cpp b/Source/Compression/Compression.cpp index 47cc949c..8e46672c 100644 --- a/Source/Compression/Compression.cpp +++ b/Source/Compression/Compression.cpp @@ -5,7 +5,7 @@ Date: 2021-6-17 Author: Reece ***/ -#include +#include #include "Compression.hpp" #include "zstd.h" diff --git a/Source/Compression/StreamCompression.cpp b/Source/Compression/StreamCompression.cpp index a3a7fd46..5df0012a 100644 --- a/Source/Compression/StreamCompression.cpp +++ b/Source/Compression/StreamCompression.cpp @@ -5,7 +5,7 @@ Date: 2021-6-17 Author: Reece ***/ -#include +#include #include "Compression.hpp" #include "StreamCompression.hpp" diff --git a/Source/Console/Commands/Commands.cpp b/Source/Console/Commands/Commands.cpp index 6402893f..16a688ec 100644 --- a/Source/Console/Commands/Commands.cpp +++ b/Source/Console/Commands/Commands.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "Commands.hpp" namespace Aurora::Console::Commands diff --git a/Source/Console/Console.cpp b/Source/Console/Console.cpp index 28498537..0e0ff6b3 100644 --- a/Source/Console/Console.cpp +++ b/Source/Console/Console.cpp @@ -5,7 +5,7 @@ Date: 2021-6-8 Author: Reece ***/ -#include +#include #include "Console.hpp" #include "Commands/Commands.hpp" #include "Hooks/Hooks.hpp" diff --git a/Source/Console/ConsoleFIO/ConsoleFIO.cpp b/Source/Console/ConsoleFIO/ConsoleFIO.cpp index db5636cc..e3d10f31 100644 --- a/Source/Console/ConsoleFIO/ConsoleFIO.cpp +++ b/Source/Console/ConsoleFIO/ConsoleFIO.cpp @@ -5,7 +5,7 @@ Date: 2021-6-22 Author: Reece ***/ -#include +#include #include "ConsoleFIO.hpp" namespace Aurora::Console::ConsoleFIO diff --git a/Source/Console/ConsoleMessage.cpp b/Source/Console/ConsoleMessage.cpp index efb33b3e..a6b3a3c7 100644 --- a/Source/Console/ConsoleMessage.cpp +++ b/Source/Console/ConsoleMessage.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "ConsoleMessage.hpp" namespace Aurora::Console diff --git a/Source/Console/ConsoleStd/ConsoleStd.cpp b/Source/Console/ConsoleStd/ConsoleStd.cpp index 03accecc..39517bc1 100644 --- a/Source/Console/ConsoleStd/ConsoleStd.cpp +++ b/Source/Console/ConsoleStd/ConsoleStd.cpp @@ -5,9 +5,9 @@ Date: 2021-6-8 Author: Reece ***/ -#include +#include #include "ConsoleStd.hpp" -#include "Locale/Locale.hpp" +#include "Source/Locale/Locale.hpp" #if defined(AURORA_IS_MODERNNT_DERIVED) || defined(AURORA_IS_POSIX_DERIVED) diff --git a/Source/Console/ConsoleWxWidgets/ConsoleWxWidgets.cpp b/Source/Console/ConsoleWxWidgets/ConsoleWxWidgets.cpp index bf232321..be455666 100644 --- a/Source/Console/ConsoleWxWidgets/ConsoleWxWidgets.cpp +++ b/Source/Console/ConsoleWxWidgets/ConsoleWxWidgets.cpp @@ -5,15 +5,15 @@ Date: 2021-6-8 Author: Reece ***/ -#include +#include #include "ConsoleWxWidgets.hpp" -#include +#include #if defined(_AUHAS_WXWIDGETS) #if defined(AURORA_PLATFORM_WIN32) #include - #include + #include #endif #include diff --git a/Source/Console/Flusher.cpp b/Source/Console/Flusher.cpp index 5ef5762e..fe49f5cc 100644 --- a/Source/Console/Flusher.cpp +++ b/Source/Console/Flusher.cpp @@ -5,7 +5,7 @@ Date: 2021-8-27 Author: Reece ***/ -#include +#include #include "Flusher.hpp" #include "ConsoleFIO/ConsoleFIO.hpp" diff --git a/Source/Console/Hooks/Hooks.cpp b/Source/Console/Hooks/Hooks.cpp index 98d2c1e3..15936489 100644 --- a/Source/Console/Hooks/Hooks.cpp +++ b/Source/Console/Hooks/Hooks.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "Hooks.hpp" namespace Aurora::Console::Hooks diff --git a/Source/Crypto.cpp b/Source/Crypto.cpp index 64b474fa..7b62a2ef 100644 --- a/Source/Crypto.cpp +++ b/Source/Crypto.cpp @@ -5,7 +5,7 @@ Date: 2021-6-17 Author: Reece ***/ -#include +#include #include "Crypto.hpp" #include diff --git a/Source/Crypto/AES/Aes.cpp b/Source/Crypto/AES/Aes.cpp index 6145fb9c..241c04f0 100644 --- a/Source/Crypto/AES/Aes.cpp +++ b/Source/Crypto/AES/Aes.cpp @@ -5,11 +5,11 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "../Crypto.hpp" #include "Aes.hpp" #include -#include +#include namespace Aurora::Crypto::AES { diff --git a/Source/Crypto/Crypto.cpp b/Source/Crypto/Crypto.cpp index d538fcb1..15c47e02 100644 --- a/Source/Crypto/Crypto.cpp +++ b/Source/Crypto/Crypto.cpp @@ -5,5 +5,5 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "Crypto.hpp" \ No newline at end of file diff --git a/Source/Crypto/Crypto.hpp b/Source/Crypto/Crypto.hpp index 1c6affa3..6fde7174 100644 --- a/Source/Crypto/Crypto.hpp +++ b/Source/Crypto/Crypto.hpp @@ -8,8 +8,8 @@ #pragma once #include -#include -#include +#include +#include namespace Aurora::Crypto { diff --git a/Source/Crypto/ECC/ECC.cpp b/Source/Crypto/ECC/ECC.cpp index 5a82a6ca..0b56bae2 100644 --- a/Source/Crypto/ECC/ECC.cpp +++ b/Source/Crypto/ECC/ECC.cpp @@ -5,7 +5,7 @@ Date: 2021-9-17 Author: Reece ***/ -#include +#include #include "ECC.hpp" #include "ECCGeneric.hpp" #include "ECCCurves.hpp" diff --git a/Source/Crypto/ECC/ECCCurves.cpp b/Source/Crypto/ECC/ECCCurves.cpp index e33782d1..8664a3ad 100644 --- a/Source/Crypto/ECC/ECCCurves.cpp +++ b/Source/Crypto/ECC/ECCCurves.cpp @@ -5,7 +5,7 @@ Date: 2021-9-17 Author: Reece ***/ -#include +#include #include "ECC.hpp" #include "ECCCurves.hpp" #include "ECCGeneric.hpp" diff --git a/Source/Crypto/ECC/ECCGeneric.cpp b/Source/Crypto/ECC/ECCGeneric.cpp index 45bff5ab..e2a9eca4 100644 --- a/Source/Crypto/ECC/ECCGeneric.cpp +++ b/Source/Crypto/ECC/ECCGeneric.cpp @@ -5,7 +5,7 @@ Date: 2021-9-17 Author: Reece ***/ -#include +#include #include "ECC.hpp" #include "ECCGeneric.hpp" #include "ECCCurves.hpp" diff --git a/Source/Crypto/ECC/ECCX25519.cpp b/Source/Crypto/ECC/ECCX25519.cpp index 2d596a2f..fba431c0 100644 --- a/Source/Crypto/ECC/ECCX25519.cpp +++ b/Source/Crypto/ECC/ECCX25519.cpp @@ -5,7 +5,7 @@ Date: 2021-9-17 Author: Reece ***/ -#include +#include #include "ECC.hpp" #include "ECCx25519.hpp" diff --git a/Source/Crypto/ECC/ECCx25519Utils.cpp b/Source/Crypto/ECC/ECCx25519Utils.cpp index 93192abb..7d55cd60 100644 --- a/Source/Crypto/ECC/ECCx25519Utils.cpp +++ b/Source/Crypto/ECC/ECCx25519Utils.cpp @@ -5,7 +5,7 @@ Date: 2021-9-17 Author: Reece ***/ -#include +#include #include "ECC.hpp" #include "ECCx25519Utils.hpp" diff --git a/Source/Crypto/ECC/PrivateECCImpl.cpp b/Source/Crypto/ECC/PrivateECCImpl.cpp index 77278e23..60ea872a 100644 --- a/Source/Crypto/ECC/PrivateECCImpl.cpp +++ b/Source/Crypto/ECC/PrivateECCImpl.cpp @@ -5,7 +5,7 @@ Date: 2021-9-17 Author: Reece ***/ -#include +#include #include "ECC.hpp" #include "ECCGeneric.hpp" #include "ECCCurves.hpp" diff --git a/Source/Crypto/ECC/PublicECCImpl.cpp b/Source/Crypto/ECC/PublicECCImpl.cpp index 28a406eb..b4e10e58 100644 --- a/Source/Crypto/ECC/PublicECCImpl.cpp +++ b/Source/Crypto/ECC/PublicECCImpl.cpp @@ -5,7 +5,7 @@ Date: 2021-9-17 Author: Reece ***/ -#include +#include #include "ECC.hpp" #include "ECCGeneric.hpp" #include "ECCCurves.hpp" diff --git a/Source/Crypto/PEM/PEM.cpp b/Source/Crypto/PEM/PEM.cpp index 0700b161..9b78a05c 100644 --- a/Source/Crypto/PEM/PEM.cpp +++ b/Source/Crypto/PEM/PEM.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "../Crypto.hpp" #include "PEM.hpp" diff --git a/Source/Crypto/RSA/RSAPrivate.cpp b/Source/Crypto/RSA/RSAPrivate.cpp index 94fa9b55..4da5978e 100644 --- a/Source/Crypto/RSA/RSAPrivate.cpp +++ b/Source/Crypto/RSA/RSAPrivate.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "../Crypto.hpp" #include "RSA.hpp" #include "RSAPrivate.hpp" diff --git a/Source/Crypto/RSA/RSAPublic.cpp b/Source/Crypto/RSA/RSAPublic.cpp index 8c8ebc0b..ec189952 100644 --- a/Source/Crypto/RSA/RSAPublic.cpp +++ b/Source/Crypto/RSA/RSAPublic.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "../Crypto.hpp" #include "RSA.hpp" #include "RSAPublic.hpp" diff --git a/Source/Crypto/X509/x509.cpp b/Source/Crypto/X509/x509.cpp index eb42f27d..e56ad162 100644 --- a/Source/Crypto/X509/x509.cpp +++ b/Source/Crypto/X509/x509.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "../Crypto.hpp" #include "x509.hpp" diff --git a/Source/Debug/Debug.cpp b/Source/Debug/Debug.cpp index 63129744..1efcd0e3 100644 --- a/Source/Debug/Debug.cpp +++ b/Source/Debug/Debug.cpp @@ -5,9 +5,9 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "Debug.hpp" -#include +#include #if defined(AURORA_PLATFORM_WIN32) #include "ExceptionWatcher.Win32.hpp" diff --git a/Source/Debug/ExceptionWatcher.Win32.cpp b/Source/Debug/ExceptionWatcher.Win32.cpp index 01f50d4b..c396b26f 100644 --- a/Source/Debug/ExceptionWatcher.Win32.cpp +++ b/Source/Debug/ExceptionWatcher.Win32.cpp @@ -5,12 +5,12 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "Debug.hpp" #include "ExceptionWatcher.Win32.hpp" -#include -#include +#include +#include #include #include diff --git a/Source/Debug/Panic.cpp b/Source/Debug/Panic.cpp index 281bc694..6a13914e 100644 --- a/Source/Debug/Panic.cpp +++ b/Source/Debug/Panic.cpp @@ -5,11 +5,11 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "Debug.hpp" #include "Panic.hpp" #include -#include +#include namespace Aurora::Debug { diff --git a/Source/Extensions/LTC/LTC.cpp b/Source/Extensions/LTC/LTC.cpp index 53573e99..2c5fb291 100644 --- a/Source/Extensions/LTC/LTC.cpp +++ b/Source/Extensions/LTC/LTC.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "LTC.hpp" extern "C" diff --git a/Source/Extensions/LTM/LTM.cpp b/Source/Extensions/LTM/LTM.cpp index 21efafa7..f9fef027 100644 --- a/Source/Extensions/LTM/LTM.cpp +++ b/Source/Extensions/LTM/LTM.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "LTM.hpp" extern "C" diff --git a/Source/Extensions/MBedTls/MBedTLS.cpp b/Source/Extensions/MBedTls/MBedTLS.cpp index 238a9348..d11a6324 100644 --- a/Source/Extensions/MBedTls/MBedTLS.cpp +++ b/Source/Extensions/MBedTls/MBedTLS.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "MBedTLS.hpp" extern "C" diff --git a/Source/Extensions/Win32/DarkTheme.cpp b/Source/Extensions/Win32/DarkTheme.cpp index c45ad4fd..b6a75013 100644 --- a/Source/Extensions/Win32/DarkTheme.cpp +++ b/Source/Extensions/Win32/DarkTheme.cpp @@ -5,7 +5,7 @@ Date: 2021-6-11 Author: Reece ***/ -#include +#include #include "DarkTheme.hpp" #include diff --git a/Source/HWInfo/CpuInfo.cpp b/Source/HWInfo/CpuInfo.cpp index b115f398..4b2f8200 100644 --- a/Source/HWInfo/CpuInfo.cpp +++ b/Source/HWInfo/CpuInfo.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "HWInfo.hpp" #include "CpuInfo.hpp" diff --git a/Source/HWInfo/HWInfo.cpp b/Source/HWInfo/HWInfo.cpp index 873bee8b..0fdb256f 100644 --- a/Source/HWInfo/HWInfo.cpp +++ b/Source/HWInfo/HWInfo.cpp @@ -5,7 +5,7 @@ Date: 2021-6-19 Author: Reece ***/ -#include +#include #include "HWInfo.hpp" #include "CpuInfo.hpp" #include "RamInfo.hpp" diff --git a/Source/HWInfo/RamInfo.cpp b/Source/HWInfo/RamInfo.cpp index a0f52952..98d5331c 100644 --- a/Source/HWInfo/RamInfo.cpp +++ b/Source/HWInfo/RamInfo.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "HWInfo.hpp" #include "RamInfo.hpp" diff --git a/Source/Hashing/CommonDigests.cpp b/Source/Hashing/CommonDigests.cpp index 650a217c..ce848f29 100644 --- a/Source/Hashing/CommonDigests.cpp +++ b/Source/Hashing/CommonDigests.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "CommonDigests.hpp" #include diff --git a/Source/Hashing/HashStream.cpp b/Source/Hashing/HashStream.cpp index 27538e6d..51e08c1b 100644 --- a/Source/Hashing/HashStream.cpp +++ b/Source/Hashing/HashStream.cpp @@ -5,7 +5,7 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "HashStream.hpp" #include diff --git a/Source/Hashing/Hashing.cpp b/Source/Hashing/Hashing.cpp index b7e75001..006d8e30 100644 --- a/Source/Hashing/Hashing.cpp +++ b/Source/Hashing/Hashing.cpp @@ -5,7 +5,7 @@ Date: 2021-6-17 Author: Reece ***/ -#include +#include #include "Hashing.hpp" namespace Aurora::Hashing diff --git a/Source/IO/FS/Async.NT.cpp b/Source/IO/FS/Async.NT.cpp index 1d92b810..7072edf6 100644 --- a/Source/IO/FS/Async.NT.cpp +++ b/Source/IO/FS/Async.NT.cpp @@ -5,7 +5,7 @@ Date: 2021-9-13 Author: Reece ***/ -#include +#include #include "FS.hpp" #include "Async.NT.hpp" diff --git a/Source/IO/FS/FS.Generic.cpp b/Source/IO/FS/FS.Generic.cpp index f03b15f5..e4763ee2 100644 --- a/Source/IO/FS/FS.Generic.cpp +++ b/Source/IO/FS/FS.Generic.cpp @@ -5,10 +5,10 @@ Date: 2021-6-12 Author: Reece ***/ -#include +#include #include "FS.hpp" #include "FS.Generic.hpp" -#include