summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-12-13 16:50:22 +0100
committerLioncash <mathew1800@gmail.com>2021-12-13 16:50:24 +0100
commit37a8e2a67eae239b13f10ac56bc42932e9a25b25 (patch)
treeb47abe4894a17ed8e967f612dbff0f9f83e3d1c7
parenttas_input: Amend -Wdocumentation warnings (diff)
downloadyuzu-37a8e2a67eae239b13f10ac56bc42932e9a25b25.tar
yuzu-37a8e2a67eae239b13f10ac56bc42932e9a25b25.tar.gz
yuzu-37a8e2a67eae239b13f10ac56bc42932e9a25b25.tar.bz2
yuzu-37a8e2a67eae239b13f10ac56bc42932e9a25b25.tar.lz
yuzu-37a8e2a67eae239b13f10ac56bc42932e9a25b25.tar.xz
yuzu-37a8e2a67eae239b13f10ac56bc42932e9a25b25.tar.zst
yuzu-37a8e2a67eae239b13f10ac56bc42932e9a25b25.zip
-rw-r--r--src/input_common/drivers/tas_input.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input_common/drivers/tas_input.cpp b/src/input_common/drivers/tas_input.cpp
index 19d8ccae3..0a504c484 100644
--- a/src/input_common/drivers/tas_input.cpp
+++ b/src/input_common/drivers/tas_input.cpp
@@ -3,7 +3,6 @@
// Refer to the license.txt file included.
#include <cstring>
-#include <regex>
#include <fmt/format.h>
#include "common/fs/file.h"
@@ -93,7 +92,6 @@ void Tas::LoadTasFile(size_t player_index, size_t file_index) {
if (line.empty()) {
continue;
}
- std::smatch m;
std::stringstream linestream(line);
std::string segment;