diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-28 15:18:49 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-28 15:18:49 -0400 |
commit | 5ea5c5a94a3b95fe1d7f6fa144001f3f62c075c1 (patch) | |
tree | 006cbedea81669d33b6ed1a2c01175060f88cdb0 /tests/framework.h | |
parent | a2099bb62d343baf4f53b5c02eeffd264a48556c (diff) | |
download | spmc-5ea5c5a94a3b95fe1d7f6fa144001f3f62c075c1.tar.gz |
Add `const char **` type to TestValue union
Diffstat (limited to 'tests/framework.h')
-rw-r--r-- | tests/framework.h | 1 |
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; |