~ubuntu-branches/ubuntu/breezy/speech-tools/breezy

« back to all changes in this revision

Viewing changes to include/instantiate/EST_TListI.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-08-02 11:52:44 UTC
  • Revision ID: james.westby@ubuntu.com-20050802115244-1me2dvxaajsh1c2q
Tags: 1:1.2.3-9
* Synchronize package from Ubuntu.
* Fix FTBFS on kfreebsd-gnu (closes: #272465).

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
#define Declare_TList_TN(TYPE,MaxFree,TAG) \
66
66
        typedef TYPE TLIST_ ## TAG ## _VAL; \
67
 
        EST_TItem< TYPE > * EST_TItem< TYPE >::s_free=NULL; \
68
 
        unsigned int EST_TItem< TYPE >::s_maxFree=MaxFree; \
69
 
        unsigned int EST_TItem< TYPE >::s_nfree=0;
 
67
        template <> EST_TItem< TYPE > * EST_TItem< TYPE >::s_free=NULL; \
 
68
        template <> unsigned int EST_TItem< TYPE >::s_maxFree=MaxFree; \
 
69
        template <> unsigned int EST_TItem< TYPE >::s_nfree=0;
70
70
#define Declare_TList_T(TYPE,TAG) \
71
71
        Declare_TList_TN(TYPE,0,TAG)
72
72