mirror of
https://github.com/red0124/ssp.git
synced 2025-12-14 21:59:55 +01:00
[skip ci] Add std:: to invoked C std lib functions
This commit is contained in:
@@ -77,9 +77,9 @@ TEST_CASE_TEMPLATE("test position method", T, ParserOptionCombinations) {
|
||||
if (!buff.empty()) {
|
||||
return buff[n];
|
||||
} else {
|
||||
auto file = fopen(f.name.c_str(), "r");
|
||||
fseek(file, n, SEEK_SET);
|
||||
return static_cast<char>(fgetc(file));
|
||||
auto file = std::fopen(f.name.c_str(), "r");
|
||||
std::fseek(file, n, SEEK_SET);
|
||||
return static_cast<char>(std::fgetc(file));
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user