diff options
| author | Stefan Boberg <[email protected]> | 2022-04-05 15:58:41 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2022-04-05 15:58:41 +0200 |
| commit | ca6516d1b552c5d6959aac3abc84cf3ee02393b6 (patch) | |
| tree | be3559834a28603871d79bdb0f6332d9b09349b2 /zencore/md5.cpp | |
| parent | Fix gc shutdown stalling if shutting down while gc is running (diff) | |
| download | zen-ca6516d1b552c5d6959aac3abc84cf3ee02393b6.tar.xz zen-ca6516d1b552c5d6959aac3abc84cf3ee02393b6.zip | |
Added option to use Catch2 framework for tests
Diffstat (limited to 'zencore/md5.cpp')
| -rw-r--r-- | zencore/md5.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/zencore/md5.cpp b/zencore/md5.cpp index faece3862..4ec145697 100644 --- a/zencore/md5.cpp +++ b/zencore/md5.cpp @@ -428,14 +428,14 @@ md5_forcelink() { } -doctest::String -toString(const MD5& value) -{ - char md5text[2 * sizeof(MD5) + 1]; - value.ToHexString(md5text); - - return md5text; -} +// doctest::String +// toString(const MD5& value) +// { +// char md5text[2 * sizeof(MD5) + 1]; +// value.ToHexString(md5text); + +// return md5text; +// } TEST_CASE("MD5") { |