Changeset 136:632254c6a691 in finroc_plugins_structure


Ignore:
Timestamp:
06.05.2020 21:58:44 (4 years ago)
Author:
Max Reichardt <mreichardt@…>
Branch:
17.03
Phase:
public
Message:

Fixes compiler warning with gcc 9.3 (swapping base classes initializes convenience port construction concern before any use)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tConveniencePort.h

    r131 r136  
    234234 */ 
    235235template <typename TPort, typename TElement, typename TContainer, TContainer& (TElement::*GET_CONTAINER)()> 
    236 class tConveniencePort : public tBasicConveniencePort<TPort>, public tConveniencePortConstruction<TElement, TContainer, GET_CONTAINER> 
     236class tConveniencePort : public tConveniencePortConstruction<TElement, TContainer, GET_CONTAINER>, public tBasicConveniencePort<TPort> 
    237237{ 
    238238  typedef typename TPort::tConstructorParameters tConstructorParameters; 
Note: See TracChangeset for help on using the changeset viewer.