Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 14415 | Differences between
and this patch

Collapse All | Expand All

(-)IlmImf/ImfAttribute.h (-6 / +2 lines)
Lines 210-217 Link Here
210
    // Register this attribute type
210
    // Register this attribute type
211
    //-----------------------------
211
    //-----------------------------
212
212
213
    using Attribute::registerAttributeType;
214
215
    static void				registerAttributeType ();
213
    static void				registerAttributeType ();
216
214
217
215
Lines 219-226 Link Here
219
    // Un-register this attribute type (for debugging only)
217
    // Un-register this attribute type (for debugging only)
220
    //-----------------------------------------------------
218
    //-----------------------------------------------------
221
219
222
    using Attribute::unRegisterAttributeType;
223
224
    static void				 unRegisterAttributeType ();
220
    static void				 unRegisterAttributeType ();
225
221
226
222
Lines 377-383 Link Here
377
inline void
373
inline void
378
TypedAttribute<T>::registerAttributeType ()
374
TypedAttribute<T>::registerAttributeType ()
379
{
375
{
380
    registerAttributeType (staticTypeName(), makeNewAttribute);
376
    Attribute::registerAttributeType (staticTypeName(), makeNewAttribute);
381
}
377
}
382
378
383
379
Lines 385-391 Link Here
385
inline void
381
inline void
386
TypedAttribute<T>::unRegisterAttributeType ()
382
TypedAttribute<T>::unRegisterAttributeType ()
387
{
383
{
388
     unRegisterAttributeType (staticTypeName());
384
     Attribute::unRegisterAttributeType (staticTypeName());
389
}
385
}
390
386
391
387

Return to bug 14415