diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2011-12-20 16:52:59 -0500 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2011-12-20 16:52:59 -0500 |
commit | 21d9f36781604e4ca9fc35dc65265593423b73e9 (patch) | |
tree | 223bf70418e43a0b9c8366c65db214780f77d61a /doc/coding.txt | |
parent | 781c06c0f534913321a415a4fb64a60734e43101 (diff) |
Use standard C99 (and Qt) types for 64-bit integers
Diffstat (limited to 'doc/coding.txt')
-rw-r--r-- | doc/coding.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/coding.txt b/doc/coding.txt index b3c812a486..21fcfaf766 100644 --- a/doc/coding.txt +++ b/doc/coding.txt @@ -28,7 +28,7 @@ someVariable. Common types:
n integer number: short, unsigned short, int, unsigned int,
- int64, uint64, sometimes char if used as a number
+ int64_t, uint64_t, sometimes char if used as a number
d double, float
f flag
hash uint256
|