Merge pull request #7768 from Tilka/warning

Fix -Wmissing-declaration warning
This commit is contained in:
Tilka 2019-02-01 03:11:14 +00:00 committed by GitHub
commit 7a91c27489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,8 @@ namespace fs = std::experimental::filesystem;
#include "DiscIO/Enums.h"
#include "DiscIO/Volume.h"
std::vector<std::string> ReadM3UFile(const std::string& m3u_path, const std::string& folder_path)
static std::vector<std::string> ReadM3UFile(const std::string& m3u_path,
const std::string& folder_path)
{
#ifndef HAS_STD_FILESYSTEM
ASSERT(folder_path.back() == '/');