Skip to content
Snippets Groups Projects
user avatar
Mark Olesen authored
- cleaner code, more similarity with unique_ptr

  Now
      if (ptr)
      if (!ptr)

  instead
      if (ptr.valid())
      if (!ptr.valid())
12c91b94
History
Name Last commit Last update
..