diff options
author | Saturneric <[email protected]> | 2023-02-16 17:46:37 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-02-16 17:46:37 +0000 |
commit | d9142776de351c8a383ea85865293a2bd2add573 (patch) | |
tree | e94ce97e62e214a3114e0b0e140b5782dd576766 /src/before_exit.cpp | |
parent | fix: solve build problem on windows platform (diff) | |
download | GpgFrontend-d9142776de351c8a383ea85865293a2bd2add573.tar.gz GpgFrontend-d9142776de351c8a383ea85865293a2bd2add573.zip |
fix: solve logging framework issues on windows
Diffstat (limited to '')
-rw-r--r-- | src/before_exit.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/before_exit.cpp b/src/before_exit.cpp index be655616..31c56354 100644 --- a/src/before_exit.cpp +++ b/src/before_exit.cpp @@ -33,10 +33,5 @@ * */ void before_exit() { -#ifdef WINDOWS - // Under VisualStudio, this must be called before main finishes to workaround - // a known VS issue - spdlog::drop_all(); - spdlog::shutdown(); -#endif + } |