diff options
author | Sadie Powell <sadie@witchery.services> | 2020-03-30 17:24:12 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-03-30 17:24:12 +0100 |
commit | 9ebda853f5bc470858501897442610699a5fd5de (patch) | |
tree | 95868366404431602883c9671a0b9f5df60e322f /src/configparser.cpp | |
parent | 3f3da905b9bce3b180208ed3e6547f8579779b28 (diff) |
Fix various documentation and formatting issues.
Diffstat (limited to 'src/configparser.cpp')
-rw-r--r-- | src/configparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configparser.cpp b/src/configparser.cpp index 4748fa847..94a12e6e9 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -431,7 +431,7 @@ void ParseStack::DoInclude(ConfigTag* tag, int flags) if (!FileSystem::GetFileList(includedir, files, "*.conf")) throw CoreException("Unable to read directory for include: " + includedir); - std::sort(files.begin(), files.end()); + std::sort(files.begin(), files.end()); for (std::vector<std::string>::const_iterator iter = files.begin(); iter != files.end(); ++iter) { const std::string path = includedir + '/' + *iter; |