summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-06-07 12:16:08 +0200
committerGitHub <noreply@github.com>2021-06-07 12:16:08 +0200
commit5e371bb4be28f76446043467a7d1df2876da8b38 (patch)
tree2f4369bbc5a5b531d0e3bdf0444b921ee6aed2d3 /Source/Core
parent8ca6ffd908aa95ffb5c7665083463c4ea1139b0d (diff)
parentce8004c9c1cd977d4f5a43e08bfcf2e9ec12f047 (diff)
Merge pull request #9792 from sepalani/lint
Lint: End of namespace
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/HLE/HLE.cpp2
-rw-r--r--Source/Core/Core/HLE/HLE_OS.cpp2
-rw-r--r--Source/Core/Core/HW/AudioInterface.cpp2
-rw-r--r--Source/Core/Core/HW/DSP.h2
-rw-r--r--Source/Core/Core/HW/DVD/DVDInterface.h2
-rw-r--r--Source/Core/Core/HW/EXI/EXI.cpp2
-rw-r--r--Source/Core/Core/HW/EXI/EXI.h2
-rw-r--r--Source/Core/Core/HW/GPFifo.cpp2
-rw-r--r--Source/Core/Core/HW/MemoryInterface.cpp2
-rw-r--r--Source/Core/Core/HW/MemoryInterface.h2
-rw-r--r--Source/Core/Core/HW/SI/SI.cpp2
-rw-r--r--Source/Core/Core/HW/SI/SI.h2
-rw-r--r--Source/Core/InputCommon/GCAdapter.cpp2
-rw-r--r--Source/Core/InputCommon/GCAdapter.h2
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp2
-rw-r--r--Source/Core/VideoCommon/PixelEngine.cpp2
-rw-r--r--Source/Core/VideoCommon/PixelEngine.h2
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<int>(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