]> git.tdb.fi Git - libs/core.git/blobdiff - source/debug/backtrace.h
Use nullptr instead of 0 for pointers
[libs/core.git] / source / debug / backtrace.h
index 3f32ade0c4558478f633e93f02f9e9e29b261024..98aa4d8cdd9736291253cecf403b10d75bf43b2a 100644 (file)
@@ -13,7 +13,7 @@ class Backtrace
 public:
        struct StackFrame
        {
-               void *address;
+               void *address = nullptr;
                std::string file;
                std::string symbol;
        };