Noise: Prevent unittest crash caused by division by zero
[oweals/minetest.git] / src / profiler.h
index 2d70e8af4fb3efc058c49878b32221234e14b3c5..cade887e8465a94e3ef85d09fd90c1573431e8a4 100644 (file)
@@ -42,9 +42,7 @@ extern Profiler *g_profiler;
 class Profiler
 {
 public:
-       Profiler()
-       {
-       }
+       Profiler() {}
 
        void add(const std::string &name, float value)
        {
@@ -195,9 +193,9 @@ public:
                        ScopeProfilerType type = SPT_ADD);
        ~ScopeProfiler();
 private:
-       Profiler *m_profiler;
+       Profiler *m_profiler = nullptr;
        std::string m_name;
-       TimeTaker *m_timer;
+       TimeTaker *m_timer = nullptr;
        enum ScopeProfilerType m_type;
 };