summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/analog/nld_mosfet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/analog/nld_mosfet.cpp')
-rw-r--r--src/lib/netlist/analog/nld_mosfet.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/netlist/analog/nld_mosfet.cpp b/src/lib/netlist/analog/nld_mosfet.cpp
index 57ccf2220c7..fff7b8d03eb 100644
--- a/src/lib/netlist/analog/nld_mosfet.cpp
+++ b/src/lib/netlist/analog/nld_mosfet.cpp
@@ -165,9 +165,9 @@ namespace analog
//NETLIB_RESETI();
NETLIB_UPDATEI() { }
- q_type qtype() const { return m_qtype; }
- bool is_qtype(q_type atype) const { return m_qtype == atype; }
- void set_qtype(q_type atype) { m_qtype = atype; }
+ q_type qtype() const noexcept { return m_qtype; }
+ bool is_qtype(q_type atype) const noexcept { return m_qtype == atype; }
+ void set_qtype(q_type atype) noexcept { m_qtype = atype; }
protected:
fet_model_t m_model;