container: root: macro: web: internal: fix Crypto++ canvas

ROOT apparently no longer likes ++ in canvas title (thus, not rendering)
This commit is contained in:
2026-01-09 11:13:14 -08:00
parent 7bf684b3d9
commit 07d3bbc41f

View File

@@ -366,7 +366,7 @@ class Random final
return common::crypto::botan::g_Random->generate();
});
data.title = "Crypto++_RNG_" + timestamp;
data.title = "CryptoPP_RNG_" + timestamp;
random(data, []() -> uint32_t {
return common::crypto::cryptopp::g_Random->generate();
});