1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-29 16:57:56 +00:00

Remove extra semis in struct defs

This commit is contained in:
Jesse Ruderman
2021-06-28 22:33:08 -07:00
parent 548b5b7772
commit 59b7e7bbdf
4 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ namespace util {
template <std::size_t I, typename T> struct nth {
inline static typename std::tuple_element<I, T>::type
get(const T& t) { return std::get<I>(t); };
get(const T& t) { return std::get<I>(t); }
};
}