diff options
| author | Luke Dashjr <[email protected]> | 2011-12-20 16:52:59 -0500 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2011-12-20 16:52:59 -0500 |
| commit | 21d9f36781604e4ca9fc35dc65265593423b73e9 (patch) | |
| tree | 223bf70418e43a0b9c8366c65db214780f77d61a /doc | |
| parent | Merge pull request #677 from luke-jr/minfee_modes (diff) | |
| download | discoin-21d9f36781604e4ca9fc35dc65265593423b73e9.tar.xz discoin-21d9f36781604e4ca9fc35dc65265593423b73e9.zip | |
Use standard C99 (and Qt) types for 64-bit integers
Diffstat (limited to 'doc')
| -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 b3c812a48..21fcfaf76 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
|