aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-03-28 15:18:49 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-03-28 15:18:49 -0400
commit5ea5c5a94a3b95fe1d7f6fa144001f3f62c075c1 (patch)
tree006cbedea81669d33b6ed1a2c01175060f88cdb0 /tests
parenta2099bb62d343baf4f53b5c02eeffd264a48556c (diff)
downloadspmc-5ea5c5a94a3b95fe1d7f6fa144001f3f62c075c1.tar.gz
Add `const char **` type to TestValue union
Diffstat (limited to 'tests')
-rw-r--r--tests/framework.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/framework.h b/tests/framework.h
index 1e5adaa..d317005 100644
--- a/tests/framework.h
+++ b/tests/framework.h
@@ -6,6 +6,7 @@
union TestValue {
const char *sptr;
char **slptr;
+ const char **cslptr;
char character;
unsigned int unsigned_integer;
signed int signed_integer;