aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThéophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>2022-04-22 10:28:06 +0200
committerGitHub <noreply@github.com>2022-04-22 10:28:06 +0200
commitc4ffc8e2f8508fb951920fc08cf9283927e7e9b8 (patch)
treeb088776c9603a12ca61c370feff763088a9b6cc0 /tests
parent35ca5fdf91852e24d677a08dd0d8dfa543150dd3 (diff)
parent484badfa096db4c001f66eccbe00b70471f2e767 (diff)
Merge pull request #6218 from pennae/pos-symbol-tables
reduce the size of Attr from 3 pointers to 2 on 64 bit machines
Diffstat (limited to 'tests')
-rw-r--r--tests/plugins/plugintest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/plugintest.cc b/tests/plugins/plugintest.cc
index cd7c9f8b1..04b791021 100644
--- a/tests/plugins/plugintest.cc
+++ b/tests/plugins/plugintest.cc
@@ -13,7 +13,7 @@ MySettings mySettings;
static GlobalConfig::Register rs(&mySettings);
-static void prim_anotherNull (EvalState & state, const Pos & pos, Value ** args, Value & v)
+static void prim_anotherNull (EvalState & state, const PosIdx pos, Value ** args, Value & v)
{
if (mySettings.settingSet)
v.mkNull();