forked from Lainports/freebsd-ports
Welcome MySQL 8.4 What is new in MySQL8.4 since MySQL 9.0: https://dev.mysql.com/doc/refman/9.0/en/mysql-nutshell.html HINT: MySQL8.4+ supports only 64-bit platforms!!! Sponsored by: Netzkommune GmbH
19 lines
870 B
C++
19 lines
870 B
C++
--- libs/mysql/serialization/archive.h.orig 2024-07-12 19:20:22 UTC
|
|
+++ libs/mysql/serialization/archive.h
|
|
@@ -81,14 +81,14 @@ class Archive {
|
|
/// @note To be implemented in Archive_derived_type
|
|
template <typename Type>
|
|
static std::size_t get_size(Type &&arg) {
|
|
- return Archive_derived_type::template get_size(std::forward<Type>(arg));
|
|
+ return Archive_derived_type::template get_size<>(std::forward<Type>(arg));
|
|
}
|
|
|
|
/// @brief Returns archive size - size of data written to the archive
|
|
/// @return archive size - size of data written to the archive
|
|
/// @note To be implemented in Archive_derived_type
|
|
inline std::size_t get_size_written() const {
|
|
- return Archive_derived_type::template get_size_written();
|
|
+ return Archive_derived_type::template get_size_written<>();
|
|
}
|
|
|
|
/// @brief Function returns maximum size of the Type
|