diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-29 18:22:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-29 18:22:03 +0000 |
commit | 7632fc0137f2eda2cddb02c07a7ad3f987a38e58 (patch) | |
tree | 681c70f7eaa0749c2b391b53bb3b77926e9b0741 /protocols/Twitter/src/utility.h | |
parent | 343e3cb94c2985078f3e2e0510a024ecfa58b87f (diff) |
fix for 64 bit integers
git-svn-id: http://svn.miranda-ng.org/main/trunk@13250 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/src/utility.h')
-rw-r--r-- | protocols/Twitter/src/utility.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Twitter/src/utility.h b/protocols/Twitter/src/utility.h index 3736ca2928..22c9aa33f6 100644 --- a/protocols/Twitter/src/utility.h +++ b/protocols/Twitter/src/utility.h @@ -25,6 +25,7 @@ std::string b64encode(const std::string &s); std::string int2str(int32_t);
std::string int2str(uint64_t);
+uint64_t str2int(const std::string &str);
class mir_twitter : public twitter
{
|