mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
Welcome MySQL 9.1 What is new in MySQL9.1: https://dev.mysql.com/doc/relnotes/mysql/9.1/en/news-9-1-0.html MySQL8.4+ supports only 64-bit platforms! Sponsored by: Netzkommune GmbH Special thanks to: samm
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
|