Skip to content

Commit 163f2bc

Browse files
committed
Fix typo
1 parent 115e4be commit 163f2bc

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Helper.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ class Helper {
6969
/// @tparam TSource Source class that should be used to serialize the json that is sent to the server
7070
/// @param source Source containing our json key-value pairs that we want to measure the resulting size of the serializeJson call for
7171
/// @return Total size required for the string that would be produced by serializeJson + 1 byte for the string null terminator
72+
template <typename TSource>
7273
static size_t Measure_Json(TSource const & source) {
7374
return measureJson(source) + 1U;
7475
}

0 commit comments

Comments
 (0)