diff options
Diffstat (limited to 'sql/sql_priv.h')
-rw-r--r-- | sql/sql_priv.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/sql_priv.h b/sql/sql_priv.h index 6bc34d611bc..970b921d6e6 100644 --- a/sql/sql_priv.h +++ b/sql/sql_priv.h @@ -166,10 +166,6 @@ template <class T> T available_buffer(const char* buf_start, { return buf_len - (buf_current - buf_start); } -/* Explicit instantion to unsigned int. */ -template unsigned int available_buffer<unsigned int>(const char*, - const char*, - unsigned int); /* Check if jump value is within buffer limits. @@ -189,11 +185,6 @@ template <class T> bool valid_buffer_range(T jump, { return (jump <= available_buffer(buf_start, buf_current, buf_len)); } -/* Explicit instantion to unsigned int. */ -template bool valid_buffer_range<unsigned int>(unsigned int, - const char*, - const char*, - unsigned int); /* The rest of the file is included in the server only */ #ifndef MYSQL_CLIENT |