diff options
| author | Stefan Boberg <[email protected]> | 2021-08-21 18:48:52 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-08-21 18:48:52 +0200 |
| commit | 276bb86fca388416428613dec981e4e5eb927081 (patch) | |
| tree | a42f0beb32fd1e61754e007d6ce26809f060a993 /zenserver/diag | |
| parent | Improved comment while reviewing code (diff) | |
| download | zen-276bb86fca388416428613dec981e4e5eb927081.tar.xz zen-276bb86fca388416428613dec981e4e5eb927081.zip | |
Improved crash reporting setup and removed old stubs
Also added ability to exercise crash reporting from command line
Diffstat (limited to 'zenserver/diag')
| -rw-r--r-- | zenserver/diag/crashreport.cpp | 12 | ||||
| -rw-r--r-- | zenserver/diag/crashreport.h | 9 |
2 files changed, 0 insertions, 21 deletions
diff --git a/zenserver/diag/crashreport.cpp b/zenserver/diag/crashreport.cpp deleted file mode 100644 index b9b8b5020..000000000 --- a/zenserver/diag/crashreport.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright Epic Games, Inc. All Rights Reserved. - -#include "crashreport.h" - -#include <zencore/filesystem.h> -#include <zencore/zencore.h> - -void -InitializeCrashReporting(const std::filesystem::path&) -{ - // TODO: properly implement crash reporting -} diff --git a/zenserver/diag/crashreport.h b/zenserver/diag/crashreport.h deleted file mode 100644 index 6369d1cf5..000000000 --- a/zenserver/diag/crashreport.h +++ /dev/null @@ -1,9 +0,0 @@ -// Copyright Epic Games, Inc. All Rights Reserved. - -#pragma once - -namespace std::filesystem { -class path; -} - -void InitializeCrashReporting(const std::filesystem::path& DumpPath); |