]> 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 67cf62fc9c70a8c5a3cefd4f125b5a35cc39d2da..98aa4d8cdd9736291253cecf403b10d75bf43b2a 100644 (file)
@@ -13,7 +13,7 @@ class Backtrace
 public:
        struct StackFrame
        {
-               void *address = 0;
+               void *address = nullptr;
                std::string file;
                std::string symbol;
        };