Changeset 138:3c49abcf300b in finroc_plugins_blackboard


Ignore:
Timestamp:
05.05.2020 00:00:35 (4 years ago)
Author:
Max Reichardt <mreichardt@…>
Branch:
14.08
Phase:
public
Message:

Fixes compiler warning with gcc 9.3 (by adding copy constructor to tChange type)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tChange.h

    r116 r138  
    7171 */ 
    7272template <typename T> 
    73 class tChange : public rrlib::util::tNoncopyable 
     73class tChange 
    7474{ 
    7575 
     
    8989    new_element(new_element) 
    9090  {} 
     91 
     92  tChange(const tChange& other) = default; 
     93  tChange& operator=(const tChange& other) = default; 
    9194 
    9295  /*! move constructor */ 
Note: See TracChangeset for help on using the changeset viewer.