You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
244 B

/*
* Copyright 2023 Ingemar Hedvall
* SPDX-License-Identifier: MIT
*/
#include "a2l/instance.h"
namespace a2l {
void Instance::AddOverwrite(std::unique_ptr<Overwrite>& overwrite) {
overwrite_list_.emplace_back( std::move(overwrite) );
}
}