diff options
author | Timothy D. Prime <tdprime@teleosmedia.com> | 2017-01-26 10:11:37 -0800 |
---|---|---|
committer | Timothy D. Prime <tdprime@teleosmedia.com> | 2017-01-26 10:11:37 -0800 |
commit | 99f584376e53aad34b149ebf5d720fd7271f1c81 (patch) | |
tree | fb70de4ce90730c18872969597dc40c2fc6ccd0a /.gitattributes | |
parent | Merge pull request #1622 (diff) | |
download | monero-99f584376e53aad34b149ebf5d720fd7271f1c81.tar.xz |
Fix invalid + of std::string and int
These warnings were emitted by clang++, and they are real bugs.
src/rpc/core_rpc_server.cpp:208:58: warning: adding 'uint64_t'
(aka 'unsigned long') to a string does not append to the string
[-Wstring-plus-int]
res.status = "Error retrieving block at height " + height;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
The obvious intent is achieved by using std::to_string().
Diffstat (limited to '.gitattributes')
0 files changed, 0 insertions, 0 deletions