Rename Integer to JsonInteger

This commit is contained in:
Benoit Blanchon
2022-12-19 11:46:44 +01:00
parent 8228aec74b
commit 652d70fe2c
12 changed files with 22 additions and 22 deletions

View File

@@ -62,7 +62,7 @@ template <typename T>
struct Converter<T, typename enable_if<is_enum<T>::value>::type>
: private VariantAttorney {
static void toJson(T src, VariantRef dst) {
dst.set(static_cast<Integer>(src));
dst.set(static_cast<JsonInteger>(src));
}
static T fromJson(VariantConstRef src) {