Update source to v6.8.18240.20051

Previous source was actually for 6.1...
This commit is contained in:
Will Pearson
2018-09-15 11:26:15 -07:00
committed by Bozo
parent 0ae09c4811
commit 5f462fed0d
124 changed files with 27735 additions and 4925 deletions

View File

@@ -929,8 +929,10 @@ const ON_ClassId* ON_ClassId::ClassId( ON_UUID uuid )
p = &ON_CLASS_RTTI(ON_SumSurface);
else
{
// The p = nullptr line does nothing (p is already nullptr) but it's a ...
p = nullptr; // <- Good location for a debugger breakpoint.
// The p = nullptr line does nothing (p is already nullptr) but, if you're working on
// file reading bugs or other cases that involving rtti bugs, then it's a good
// location for a debugger breakpoint.
p = nullptr;
}
}
return p;