From cb4e624f95d3227ad63d42c77a42182532b64456 Mon Sep 17 00:00:00 2001 From: Konstantin Osipov Date: Wed, 9 Dec 2009 12:17:17 +0300 Subject: [PATCH] Backpo ---------------------------------------------------------- revno: 2617.69.28 committer: Konstantin Osipov branch nick: 5.4-azalea-bugfixing timestamp: Tue 2009-08-18 15:27:35 +0400 message: An attempt to fix a link failure on Windows -- Sroutine_hash_entry is forward-declared as class. (Part of WL#4284). --- sql/sp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql/sp.h b/sql/sp.h index cf8f72d2cef..1de41eb3920 100644 --- a/sql/sp.h +++ b/sql/sp.h @@ -69,8 +69,9 @@ sp_drop_routine(THD *thd, int type, sp_name *name); used by statement or routine. */ -struct Sroutine_hash_entry +class Sroutine_hash_entry { +public: /** Set key consisting of one-byte routine type and quoted routine name. */