diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-08-04 11:54:34 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-08-04 11:54:34 +0200 |
commit | 0cb349b60ea17378a4c163f0c8b12e8b17988cee (patch) | |
tree | f0bf6100f6968c94b09a9d018966f495405d985d /gui | |
parent | dc4bd1b55fba763792e3e8826a9fee63d486006b (diff) | |
download | nextpnr-0cb349b60ea17378a4c163f0c8b12e8b17988cee.tar.gz nextpnr-0cb349b60ea17378a4c163f0c8b12e8b17988cee.tar.bz2 nextpnr-0cb349b60ea17378a4c163f0c8b12e8b17988cee.zip |
Utility calls static
Diffstat (limited to 'gui')
-rw-r--r-- | gui/ecp5/mainwindow.cc | 2 | ||||
-rw-r--r-- | gui/ice40/mainwindow.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gui/ecp5/mainwindow.cc b/gui/ecp5/mainwindow.cc index 510b0201..efaad364 100644 --- a/gui/ecp5/mainwindow.cc +++ b/gui/ecp5/mainwindow.cc @@ -76,7 +76,7 @@ void MainWindow::createMenu() { static const ChipInfoPOD *get_chip_info(const RelPtr<ChipInfoPOD> *ptr) { return ptr->get(); }
-QStringList getSupportedPackages(ArchArgs::ArchArgsTypes chip)
+static QStringList getSupportedPackages(ArchArgs::ArchArgsTypes chip)
{
QStringList packages;
const ChipInfoPOD *chip_info;
diff --git a/gui/ice40/mainwindow.cc b/gui/ice40/mainwindow.cc index 3463e122..40b863e9 100644 --- a/gui/ice40/mainwindow.cc +++ b/gui/ice40/mainwindow.cc @@ -80,7 +80,7 @@ void MainWindow::createMenu() static const ChipInfoPOD *get_chip_info(const RelPtr<ChipInfoPOD> *ptr) { return ptr->get(); }
-QStringList getSupportedPackages(ArchArgs::ArchArgsTypes chip)
+static QStringList getSupportedPackages(ArchArgs::ArchArgsTypes chip)
{
QStringList packages;
const ChipInfoPOD *chip_info;
|