3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-31 23:34:55 +00:00

Fixes for the build on OS X 10.9

This commit is contained in:
Christoph M. Wintersteiger 2014-01-28 14:00:42 +00:00
parent 0e74362ecb
commit f111dd4e61
5 changed files with 10 additions and 8 deletions

View file

@ -66,7 +66,7 @@ Revision History:
namespace stl_ext {
template <>
class hash<std::string> {
stl_ext::hash<char *> H;
stl_ext::hash<const char *> H;
public:
size_t operator()(const std::string &s) const {
return H(s.c_str());