From ce8004c9c1cd977d4f5a43e08bfcf2e9ec12f047 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Mon, 7 Jun 2021 12:55:52 +0400 Subject: [PATCH] Lint: End of namespace --- Source/Core/Core/HLE/HLE.cpp | 2 +- Source/Core/Core/HLE/HLE_OS.cpp | 2 +- Source/Core/Core/HW/AudioInterface.cpp | 2 +- Source/Core/Core/HW/DSP.h | 2 +- Source/Core/Core/HW/DVD/DVDInterface.h | 2 +- Source/Core/Core/HW/EXI/EXI.cpp | 2 +- Source/Core/Core/HW/EXI/EXI.h | 2 +- Source/Core/Core/HW/GPFifo.cpp | 2 +- Source/Core/Core/HW/MemoryInterface.cpp | 2 +- Source/Core/Core/HW/MemoryInterface.h | 2 +- Source/Core/Core/HW/SI/SI.cpp | 2 +- Source/Core/Core/HW/SI/SI.h | 2 +- Source/Core/InputCommon/GCAdapter.cpp | 2 +- Source/Core/InputCommon/GCAdapter.h | 2 +- Source/Core/VideoCommon/CommandProcessor.cpp | 2 +- Source/Core/VideoCommon/PixelEngine.cpp | 2 +- Source/Core/VideoCommon/PixelEngine.h | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Source/Core/Core/HLE/HLE.cpp b/Source/Core/Core/HLE/HLE.cpp index 9c9471434d..55ca830d42 100644 --- a/Source/Core/Core/HLE/HLE.cpp +++ b/Source/Core/Core/HLE/HLE.cpp @@ -234,4 +234,4 @@ u32 UnPatch(std::string_view patch_name) return 0; } -} // end of namespace HLE +} // namespace HLE diff --git a/Source/Core/Core/HLE/HLE_OS.cpp b/Source/Core/Core/HLE/HLE_OS.cpp index 8a1195c830..522f9e936f 100644 --- a/Source/Core/Core/HLE/HLE_OS.cpp +++ b/Source/Core/Core/HLE/HLE_OS.cpp @@ -266,4 +266,4 @@ std::string GetStringVA(u32 str_reg, ParameterType parameter_type) return result; } -} // end of namespace HLE_OS +} // namespace HLE_OS diff --git a/Source/Core/Core/HW/AudioInterface.cpp b/Source/Core/Core/HW/AudioInterface.cpp index 82f1418368..f9b755e168 100644 --- a/Source/Core/Core/HW/AudioInterface.cpp +++ b/Source/Core/Core/HW/AudioInterface.cpp @@ -344,4 +344,4 @@ int GetAIPeriod() return static_cast(std::min(period, s_period)); } -} // end of namespace AudioInterface +} // namespace AudioInterface diff --git a/Source/Core/Core/HW/DSP.h b/Source/Core/Core/HW/DSP.h index 2447685a2e..5ef11f0911 100644 --- a/Source/Core/Core/HW/DSP.h +++ b/Source/Core/Core/HW/DSP.h @@ -82,4 +82,4 @@ u8* GetARAMPtr(); void UpdateAudioDMA(); void UpdateDSPSlice(int cycles); -} // end of namespace DSP +} // namespace DSP diff --git a/Source/Core/Core/HW/DVD/DVDInterface.h b/Source/Core/Core/HW/DVD/DVDInterface.h index 38ada994c1..ef13ade229 100644 --- a/Source/Core/Core/HW/DVD/DVDInterface.h +++ b/Source/Core/Core/HW/DVD/DVDInterface.h @@ -149,4 +149,4 @@ void FinishExecutingCommand(ReplyType reply_type, DIInterruptType interrupt_type void SetInterruptEnabled(DIInterruptType interrupt, bool enabled); void ClearInterrupt(DIInterruptType interrupt); -} // end of namespace DVDInterface +} // namespace DVDInterface diff --git a/Source/Core/Core/HW/EXI/EXI.cpp b/Source/Core/Core/HW/EXI/EXI.cpp index 0c11ad8e05..351e854a74 100644 --- a/Source/Core/Core/HW/EXI/EXI.cpp +++ b/Source/Core/Core/HW/EXI/EXI.cpp @@ -204,4 +204,4 @@ void ScheduleUpdateInterrupts(CoreTiming::FromThread from, int cycles_late) CoreTiming::ScheduleEvent(cycles_late, updateInterrupts, 0, from); } -} // end of namespace ExpansionInterface +} // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/EXI/EXI.h b/Source/Core/Core/HW/EXI/EXI.h index 27e806d472..280f97f60f 100644 --- a/Source/Core/Core/HW/EXI/EXI.h +++ b/Source/Core/Core/HW/EXI/EXI.h @@ -47,4 +47,4 @@ CEXIChannel* GetChannel(u32 index); IEXIDevice* FindDevice(TEXIDevices device_type, int customIndex = -1); -} // end of namespace ExpansionInterface +} // namespace ExpansionInterface diff --git a/Source/Core/Core/HW/GPFifo.cpp b/Source/Core/Core/HW/GPFifo.cpp index d21f698c02..aac509ad63 100644 --- a/Source/Core/Core/HW/GPFifo.cpp +++ b/Source/Core/Core/HW/GPFifo.cpp @@ -168,4 +168,4 @@ void FastWrite64(u64 value) PowerPC::ppcState.gather_pipe_ptr += sizeof(u64); } -} // end of namespace GPFifo +} // namespace GPFifo diff --git a/Source/Core/Core/HW/MemoryInterface.cpp b/Source/Core/Core/HW/MemoryInterface.cpp index c57c4f29f9..0160fa357a 100644 --- a/Source/Core/Core/HW/MemoryInterface.cpp +++ b/Source/Core/Core/HW/MemoryInterface.cpp @@ -197,4 +197,4 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base) } } -} // end of namespace MemoryInterface +} // namespace MemoryInterface diff --git a/Source/Core/Core/HW/MemoryInterface.h b/Source/Core/Core/HW/MemoryInterface.h index 54b86b57cf..64a23e3ca4 100644 --- a/Source/Core/Core/HW/MemoryInterface.h +++ b/Source/Core/Core/HW/MemoryInterface.h @@ -17,4 +17,4 @@ namespace MemoryInterface void DoState(PointerWrap& p); void RegisterMMIO(MMIO::Mapping* mmio, u32 base); -} // end of namespace MemoryInterface +} // namespace MemoryInterface diff --git a/Source/Core/Core/HW/SI/SI.cpp b/Source/Core/Core/HW/SI/SI.cpp index 7b17a213c1..d271158740 100644 --- a/Source/Core/Core/HW/SI/SI.cpp +++ b/Source/Core/Core/HW/SI/SI.cpp @@ -687,4 +687,4 @@ u32 GetPollXLines() return s_poll.X; } -} // end of namespace SerialInterface +} // namespace SerialInterface diff --git a/Source/Core/Core/HW/SI/SI.h b/Source/Core/Core/HW/SI/SI.h index 0e3094bc40..c776d461ab 100644 --- a/Source/Core/Core/HW/SI/SI.h +++ b/Source/Core/Core/HW/SI/SI.h @@ -43,4 +43,4 @@ SIDevices GetDeviceType(int channel); u32 GetPollXLines(); -} // end of namespace SerialInterface +} // namespace SerialInterface diff --git a/Source/Core/InputCommon/GCAdapter.cpp b/Source/Core/InputCommon/GCAdapter.cpp index 6041defaa3..1ef08ecc22 100644 --- a/Source/Core/InputCommon/GCAdapter.cpp +++ b/Source/Core/InputCommon/GCAdapter.cpp @@ -586,4 +586,4 @@ bool IsDetected(const char** error_message) return false; } -} // end of namespace GCAdapter +} // namespace GCAdapter diff --git a/Source/Core/InputCommon/GCAdapter.h b/Source/Core/InputCommon/GCAdapter.h index eb05335602..bfbba85193 100644 --- a/Source/Core/InputCommon/GCAdapter.h +++ b/Source/Core/InputCommon/GCAdapter.h @@ -31,4 +31,4 @@ bool DeviceConnected(int chan); void ResetDeviceType(int chan); bool UseAdapter(); -} // end of namespace GCAdapter +} // namespace GCAdapter diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp index 4cdb9bd9fc..bc6f121562 100644 --- a/Source/Core/VideoCommon/CommandProcessor.cpp +++ b/Source/Core/VideoCommon/CommandProcessor.cpp @@ -634,4 +634,4 @@ void HandleUnknownOpcode(u8 cmd_byte, void* buffer, bool preprocess) } } -} // end of namespace CommandProcessor +} // namespace CommandProcessor diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp index 4e7f401f88..e04539d5f0 100644 --- a/Source/Core/VideoCommon/PixelEngine.cpp +++ b/Source/Core/VideoCommon/PixelEngine.cpp @@ -322,4 +322,4 @@ UPEAlphaReadReg GetAlphaReadMode() return m_AlphaRead; } -} // end of namespace PixelEngine +} // namespace PixelEngine diff --git a/Source/Core/VideoCommon/PixelEngine.h b/Source/Core/VideoCommon/PixelEngine.h index ef6934de60..90991d6c59 100644 --- a/Source/Core/VideoCommon/PixelEngine.h +++ b/Source/Core/VideoCommon/PixelEngine.h @@ -66,4 +66,4 @@ void SetToken(const u16 token, const bool interrupt); void SetFinish(); UPEAlphaReadReg GetAlphaReadMode(); -} // end of namespace PixelEngine +} // namespace PixelEngine