diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 14:57:03 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 14:57:19 +0200 |
| commit | 02ab6e97cf6de3f21283f766a6f585d14965867c (patch) | |
| tree | 3c2b92198b330f9683f9b9a791f1a8839b9f4a25 /zencore/uid.cpp | |
| parent | Handle absence of std::source_location somewhat more gracefully (relies on cl... (diff) | |
| download | zen-02ab6e97cf6de3f21283f766a6f585d14965867c.tar.xz zen-02ab6e97cf6de3f21283f766a6f585d14965867c.zip | |
Unused variable warning fix
Diffstat (limited to 'zencore/uid.cpp')
| -rw-r--r-- | zencore/uid.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zencore/uid.cpp b/zencore/uid.cpp index 644d0aa77..acf9f9790 100644 --- a/zencore/uid.cpp +++ b/zencore/uid.cpp @@ -100,6 +100,7 @@ TEST_CASE("Oid") SUBCASE("Basic") { Oid id1 = Oid::NewOid(); + ZEN_UNUSED(id1); std::vector<Oid> ids; std::set<Oid> idset; |