1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 00:11:17 +02:00

Fix 32-bit build

This commit is contained in:
Eelco Dolstra 2016-08-30 17:38:09 +02:00
parent 6631a6e1a1
commit d74c8a3f4e
3 changed files with 8 additions and 5 deletions

View file

@ -9,6 +9,7 @@ namespace nix {
void toJSON(std::ostream & str, const char * start, const char * end);
void toJSON(std::ostream & str, const std::string & s);
void toJSON(std::ostream & str, const char * s);
void toJSON(std::ostream & str, unsigned long long n);
void toJSON(std::ostream & str, unsigned long n);
void toJSON(std::ostream & str, long n);
void toJSON(std::ostream & str, double f);