flaght / google-url

Automatically exported from code.google.com/p/google-url
Other
0 stars 0 forks source link

uint64 not defined in basictypes.h for url_canon_ip.cc #13

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Try to compile url_canon_ip.cc

What is the expected output? What do you see instead?
You get an error for an undefined type on line 170, where 'uint64' is used,
but unlike uint32, 16, and 8 this is not defined in basictypes.h

This can be fixed by adding the following declaration: "typedef unsigned
long long uint64;" I believe.

What version of the product are you using? On what operating system?
Linux x86 with GCC version 4.4.1.

Original issue reported on code.google.com by VeXoc...@gmail.com on 10 Oct 2009 at 7:03

GoogleCodeExporter commented 9 years ago
It is fixed in the patch provided in issue 22
http://code.google.com/p/google-url/issues/detail?id=22

Original comment by sebastie...@gmail.com on 16 Feb 2011 at 6:11