[asterisk-commits] pcadach: branch pcadach/chan_h323-live r42840 - /team/pcadach/chan_h323-live/...

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Sep 12 08:51:46 MST 2006


Author: pcadach
Date: Tue Sep 12 10:51:46 2006
New Revision: 42840

URL: http://svn.digium.com/view/asterisk?rev=42840&view=rev
Log:
Make it compiles under GCC 3.4.4+

Modified:
    team/pcadach/chan_h323-live/channels/h323/compat_h323.h

Modified: team/pcadach/chan_h323-live/channels/h323/compat_h323.h
URL: http://svn.digium.com/view/asterisk/team/pcadach/chan_h323-live/channels/h323/compat_h323.h?rev=42840&r1=42839&r2=42840&view=diff
==============================================================================
--- team/pcadach/chan_h323-live/channels/h323/compat_h323.h (original)
+++ team/pcadach/chan_h323-live/channels/h323/compat_h323.h Tue Sep 12 10:51:46 2006
@@ -52,11 +52,11 @@
 class MyPFactory: public PFactory<_Abstract_T, _Key_T>
 {
 public:
-	template <class _Contrete_T> class Worker: WorkerBase
+	template <class _Contrete_T> class Worker: public PFactory<_Abstract_T, _Key_T>::WorkerBase
 	{
 	public:
 		Worker(const _Key_T &_key, bool singleton = false)
-			:WorkerBase(singleton), key(_key)
+			:PFactory<_Abstract_T, _Key_T>::WorkerBase(singleton), key(_key)
 		{
 			PFactory<_Abstract_T, _Key_T>::Register(key, this);
 		}



More information about the asterisk-commits mailing list