diff options
| author | 2021-01-17 02:43:06 -0500 | |
|---|---|---|
| committer | 2021-01-17 02:44:21 -0500 | |
| commit | 40acc2c079309c9c084e3aedd75ed42d42bfb20e (patch) | |
| tree | 3da640c9535074b6d9feff8c39527ed6f030b7d3 /src/video_core/buffer_cache | |
| parent | Merge pull request #5740 from lioncash/const-fn (diff) | |
| download | yuzu-40acc2c079309c9c084e3aedd75ed42d42bfb20e.tar.gz yuzu-40acc2c079309c9c084e3aedd75ed42d42bfb20e.tar.xz yuzu-40acc2c079309c9c084e3aedd75ed42d42bfb20e.zip | |
video_core: Resolve -Wdocumentation warnings
Silences some -Wdocumentation warnings on Clang.
Diffstat (limited to 'src/video_core/buffer_cache')
| -rw-r--r-- | src/video_core/buffer_cache/buffer_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/buffer_cache/buffer_base.h b/src/video_core/buffer_cache/buffer_base.h index fd740c2c1..ee8602ce9 100644 --- a/src/video_core/buffer_cache/buffer_base.h +++ b/src/video_core/buffer_cache/buffer_base.h | |||
| @@ -446,7 +446,7 @@ private: | |||
| 446 | * @param offset Offset in bytes from the start of the buffer | 446 | * @param offset Offset in bytes from the start of the buffer |
| 447 | * @param size Size in bytes of the region to query for modifications | 447 | * @param size Size in bytes of the region to query for modifications |
| 448 | * | 448 | * |
| 449 | * @tparam True to query GPU modified pages, false for CPU pages | 449 | * @tparam gpu True to query GPU modified pages, false for CPU pages |
| 450 | */ | 450 | */ |
| 451 | template <bool gpu> | 451 | template <bool gpu> |
| 452 | [[nodiscard]] std::pair<u64, u64> ModifiedRegion(u64 offset, u64 size) const noexcept { | 452 | [[nodiscard]] std::pair<u64, u64> ModifiedRegion(u64 offset, u64 size) const noexcept { |