Skip to content

Commit

Permalink
Merge pull request #266 from DARMA-tasking/265-hack
Browse files Browse the repository at this point in the history
265: Add method that appears on inherited types
  • Loading branch information
PhilMiller authored Oct 18, 2022
2 parents 9c55f2d + aa1a307 commit b2293f3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/checkpoint/serializers/base_serializer.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,16 @@ struct Serializer {
*/
void addBytes(std::size_t s) {}

/**
/**
* \brief Add contiguous bytes to the sizer
*
* \param[in] ptr the element being serialized (not used)
* \param[in] size the number of bytes for each element
* \param[in] num_elms the number of elements
*/
void contiguousBytes(void* ptr, SerialSizeType size, SerialSizeType num_elms) {}

/**
* \brief Returns size of buffer (in bytes) used during given serialization
* step. By default it returns 0.
*
Expand Down

0 comments on commit b2293f3

Please sign in to comment.