Sta::makeCorners virtual

Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
James Cherry
2024-07-13 17:08:43 -07:00
parent 3ba6f0e527
commit 765309f609
4 changed files with 19 additions and 11 deletions
+2 -1
View File
@@ -8,6 +8,7 @@ member variable - snake case with trailing underscore (member_variable_)
Trailing underscore prevents conflict with accessor
member function name.
function - lower camel case (functionName)
variable - snake case
comments - use capitalized sentences that end with periods
C++ code files should use a .cc file extension
@@ -55,7 +56,7 @@ this:
instead, write this:
foo = (char *) malloc (sizeof *foo);
if (foo == 0)
if (foo == nullptr)
fatal ("virtual memory exhausted");