Found during PR #362 review: apps/rux/include/create/gsplat.hpp restates the library options struct's default values despite a header comment claiming accessors exist. STANDARDS §4 requires CLI flag defaults to mirror the library options struct, never redefine it — same class of defect as the ones fixed in apps/rux/include/create/windows.hpp by PR #360.
Fix: make the CLI header read defaults from the library struct (default-constructed instance), as the other create subcommands do.
Found during PR #362 review:
apps/rux/include/create/gsplat.hpprestates the library options struct's default values despite a header comment claiming accessors exist. STANDARDS §4 requires CLI flag defaults to mirror the library options struct, never redefine it — same class of defect as the ones fixed inapps/rux/include/create/windows.hppby PR #360.Fix: make the CLI header read defaults from the library struct (default-constructed instance), as the other create subcommands do.