You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to compile in Ubuntu 21.04 I get the following error with regards to cstring. If I add #include to MerkleCommitment.hpp then the library compiles.
In file included from src/protocols/Ali/common_details/common.hpp:4,
from src/protocols/Ali/common_details/common.cpp:1:
src/protocols/common/CryptoCommitment/MerkleCommitment.hpp:17:10: error: ‘string’ in namespace ‘std’ does not name a type
17 | std::string toString()const;
| ^~~~~~
src/protocols/common/CryptoCommitment/MerkleCommitment.hpp:9:1: note: ‘std::string’ is defined in header ‘<string>’; did you forget to ‘#include <string>’?
8 | #include <set>
+++ |+#include <string>
9 |
The text was updated successfully, but these errors were encountered:
When trying to compile in Ubuntu 21.04 I get the following error with regards to cstring. If I add #include to MerkleCommitment.hpp then the library compiles.
The text was updated successfully, but these errors were encountered: