From 73899fc81e26797b5e60de8de3fac676373275d8 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Fri, 12 Jan 2018 17:55:43 +0500 Subject: Backported to C++14 --- src/DebugInfo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/DebugInfo.cpp') diff --git a/src/DebugInfo.cpp b/src/DebugInfo.cpp index 309c7aa..e2d439b 100644 --- a/src/DebugInfo.cpp +++ b/src/DebugInfo.cpp @@ -1,6 +1,6 @@ #include "DebugInfo.hpp" -std::atomic_int DebugInfo::totalSections = 0; -std::atomic_int DebugInfo::renderSections = 0; -std::atomic_int DebugInfo::readyRenderer = 0; -std::atomic_int DebugInfo::gameThreadTime = 0; \ No newline at end of file +std::atomic_int DebugInfo::totalSections(0); +std::atomic_int DebugInfo::renderSections(0); +std::atomic_int DebugInfo::readyRenderer(0); +std::atomic_int DebugInfo::gameThreadTime(0); \ No newline at end of file -- cgit v1.2.3