Mutual inductance statements have no model.

This commit is contained in:
Jeff Young 2024-01-23 15:14:09 +00:00
parent 1bd8da41a7
commit a263b6d343
2 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2022 Mikolaj Wielgus
* Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2022-2024 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License

View File

@ -34,6 +34,11 @@ class SPICE_GENERATOR_L_MUTUAL : public SPICE_GENERATOR
public:
using SPICE_GENERATOR::SPICE_GENERATOR;
std::string ItemModelName( const SPICE_ITEM& aItem ) const override
{
return "";
}
std::string ItemParams() const override;
};