#include "spaceship_operator.hpp" namespace cpp20 { auto sort_versions(std::vector versions) -> std::vector { (void)versions; return {}; } auto is_sorted_versions(const std::vector& versions) -> bool { (void)versions; return false; } } // namespace cpp20