diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-10-20 15:58:06 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-10-20 15:58:09 -0400 |
| commit | c1e5525fc622e5bf5c40acceba4a07529051fab3 (patch) | |
| tree | d77362f0fceace3a09776b7d828c1c4ca56fd58b /src/video_core/engines/maxwell_compute.cpp | |
| parent | d53c73adaa3a076295c20942c875acec3962cf37 (diff) | |
engines/maxwell_*: Use nested namespace specifiers where applicable
These three source files are the only ones within the engines directory
that don't use nested namespaces. We may as well change these over to
keep things consistent.
Diffstat (limited to 'src/video_core/engines/maxwell_compute.cpp')
| -rw-r--r-- | src/video_core/engines/maxwell_compute.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_compute.cpp b/src/video_core/engines/maxwell_compute.cpp index 59e28b22d..8b5f08351 100644 --- a/src/video_core/engines/maxwell_compute.cpp +++ b/src/video_core/engines/maxwell_compute.cpp @@ -6,8 +6,7 @@ #include "core/core.h" #include "video_core/engines/maxwell_compute.h" -namespace Tegra { -namespace Engines { +namespace Tegra::Engines { void MaxwellCompute::WriteReg(u32 method, u32 value) { ASSERT_MSG(method < Regs::NUM_REGS, @@ -26,5 +25,4 @@ void MaxwellCompute::WriteReg(u32 method, u32 value) { } } -} // namespace Engines -} // namespace Tegra +} // namespace Tegra::Engines |
