summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Profiler.cpp
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2019-03-02 19:42:25 +0100
committerFilip Gawin <filip.gawin@zoho.com>2019-04-30 01:22:24 +0200
commitc110ffcdaa8b928a984a89cebacd03f5caaace06 (patch)
treed44f19a905630c3c2e25aa4b04b506e929c87305 /Source/Core/Common/Profiler.cpp
parent8e1fb126d711f7dcecbf16725d35b06cdc8f18b9 (diff)
Remove redundant initialization
Diffstat (limited to 'Source/Core/Common/Profiler.cpp')
-rw-r--r--Source/Core/Common/Profiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Profiler.cpp b/Source/Core/Common/Profiler.cpp
index 0be14073bd..ab575b9d86 100644
--- a/Source/Core/Common/Profiler.cpp
+++ b/Source/Core/Common/Profiler.cpp
@@ -25,7 +25,7 @@ u32 Profiler::s_max_length = 0;
u64 Profiler::s_frame_time;
u64 Profiler::s_usecs_frame;
-std::string Profiler::s_lazy_result = "";
+std::string Profiler::s_lazy_result;
int Profiler::s_lazy_delay = 0;
Profiler::Profiler(const std::string& name)