Skip to content

Commit

Permalink
Merge pull request #7768 from Tilka/warning
Browse files Browse the repository at this point in the history
Fix -Wmissing-declaration warning
  • Loading branch information
Tilka committed Feb 1, 2019
2 parents e5ca338 + 45aeb86 commit 7a91c27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/Core/Boot/Boot.cpp
Expand Up @@ -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() == '/');
Expand Down

0 comments on commit 7a91c27

Please sign in to comment.