diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-05-04 20:21:48 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-07-23 01:32:47 +0200 |
commit | 330626ab22fe2e87afa5306c5f4039088c41b49e (patch) | |
tree | 86a5c7e0f0eb34743d186cbd712d368fed16f748 /src/OSSupport/File.h | |
parent | Remove some unused inclusions (diff) | |
download | cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.gz cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.bz2 cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.lz cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.xz cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.tar.zst cuberite-330626ab22fe2e87afa5306c5f4039088c41b49e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/OSSupport/File.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/OSSupport/File.h b/src/OSSupport/File.h index 689900816..9987c41c7 100644 --- a/src/OSSupport/File.h +++ b/src/OSSupport/File.h @@ -168,11 +168,11 @@ public: /** Returns the list of all items in the specified folder (files, folders, nix pipes, whatever's there). */ static AStringVector GetFolderContents(const AString & a_Folder); // Exported in ManualBindings.cpp - int vPrintf(const char * a_Fmt, fmt::printf_args); + int vPrintf(const char * a_Format, fmt::printf_args a_ArgList); template <typename... Args> - int Printf(const char * a_Fmt, const Args & ... a_Args) + int Printf(const char * a_Format, const Args & ... a_Args) { - return vPrintf(a_Fmt, fmt::make_printf_args(a_Args...)); + return vPrintf(a_Format, fmt::make_printf_args(a_Args...)); } /** Flushes all the bufferef output into the file (only when writing) */ |