You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rewrite table_is_system for clarity, extensibility
Previous version was a hot mess: casting strings to strings, using a
sentinel value to mark the end of an array, using a while loop where a for
loop was appropriate, nesting all function logic in one branch of an if
statement. Why even.
This version is much cleaner, and it begins with a std::vector, which
means we can (in commits to follow) add elements to it based on
command-line options.
0 commit comments