From 005ed1b8ab38b0514c81e84cfe60831bb3430df2 Mon Sep 17 00:00:00 2001 From: heapwolf Date: Fri, 5 Jul 2019 14:53:26 -0700 Subject: [PATCH] explicit references --- index.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.hxx b/index.hxx index aec599f..99bb2fe 100644 --- a/index.hxx +++ b/index.hxx @@ -41,7 +41,7 @@ class Debug { this->enabled = true; - start = clock_t::now(); + this->start = clock_t::now(); if (Debug::colorIndex == 255) { Debug::colorIndex = 0; @@ -122,7 +122,7 @@ class Debug { // // Reset the timer. // - start = clock_t::now(); + this->start = clock_t::now(); } };