summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2019-02-01 03:11:14 +0000
committerGitHub <noreply@github.com>2019-02-01 03:11:14 +0000
commit7a91c27489e4b70d67e76cbf5b016036a62ec8cb (patch)
tree232ceb90b1477f21d4c9e45a30f75d3ce0cb218b /Source
parente5ca338958b3c52517105f193b988afae34dcbff (diff)
parent45aeb86766998237d17bb12c533ea90355b590a2 (diff)
Merge pull request #7768 from Tilka/warning
Fix -Wmissing-declaration warning
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/Boot/Boot.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp
index 6533a2719a..5f1c7639d0 100644
--- a/Source/Core/Core/Boot/Boot.cpp
+++ b/Source/Core/Core/Boot/Boot.cpp
@@ -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() == '/');