We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.

GeekOwL • 5 years ago

std::optional<std::string> create(bool b) {
if (b)
return "Godzilla";
return std::nullopt;
}