summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/poptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/plib/poptions.cpp')
-rw-r--r--src/lib/netlist/plib/poptions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/netlist/plib/poptions.cpp b/src/lib/netlist/plib/poptions.cpp
index 43e992f9225..dcb8e3931f3 100644
--- a/src/lib/netlist/plib/poptions.cpp
+++ b/src/lib/netlist/plib/poptions.cpp
@@ -219,7 +219,7 @@ namespace plib {
}
pstring options::help(pstring description, pstring usage,
- unsigned width, unsigned indent)
+ unsigned width, unsigned indent) const
{
pstring ret;
@@ -293,7 +293,7 @@ namespace plib {
return ret;
}
- option *options::getopt_short(pstring arg)
+ option *options::getopt_short(pstring arg) const
{
for (auto & optbase : m_opts)
{
@@ -303,7 +303,7 @@ namespace plib {
}
return nullptr;
}
- option *options::getopt_long(pstring arg)
+ option *options::getopt_long(pstring arg) const
{
for (auto & optbase : m_opts)
{