tas_input: Remove unused std::smatch variable

This also means we can get rid of the dependency on <regex>
merge-requests/60/head
Lioncash 2021-12-13 10:50:22 +07:00
parent d52ad96ce3
commit 37a8e2a67e
1 changed files with 0 additions and 2 deletions

@ -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;