diff options
author | worktycho <work.tycho@gmail.com> | 2015-05-15 15:54:48 +0200 |
---|---|---|
committer | tycho <work.tycho@gmail.com> | 2015-05-16 11:47:04 +0200 |
commit | 0da8c7392e753b89b20dc0678e78ab3060e535ed (patch) | |
tree | c2191c030f44c4a9f83df2e7c79fb81215221539 | |
parent | Move make_unique into a namespace to avoid ADL issues (diff) | |
download | cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.gz cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.bz2 cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.lz cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.xz cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.zst cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.zip |
Diffstat (limited to '')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9f57ad6bd..a0f51105a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -258,7 +258,7 @@ DWORD WINAPI serviceWorkerThread(LPVOID lpParam) UNREFERENCED_PARAMETER(lpParam); // Do the normal startup - universalMain(); + universalMain(cpp14::make_unique<cMemorySettingsRepository>()); return ERROR_SUCCESS; } |