Fix a gcc -Wpedantix warning

llvm-svn: 349492
This commit is contained in:
Nico Weber 2018-12-18 15:17:01 +00:00
parent ef4d4f543a
commit cfa54fb456
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ template <size_t Index> struct SerializerImpl {
Index >= std::tuple_size<typename std::remove_reference<
Tuple>::type>::value,
int>::type = 0>
static void serializeTo(char *, Tuple &&){};
static void serializeTo(char *, Tuple &&) {}
};
using Serializer = SerializerImpl<0>;