Files
monero/src
Timothy D. Prime 99f584376e 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().
2017-01-26 10:11:37 -08:00
..
2017-01-16 20:42:59 +00:00
2016-12-13 00:26:25 +02:00
2017-01-08 16:40:02 -08:00
2017-01-16 00:25:46 +00:00
2016-09-26 17:22:30 -04:00
2017-01-23 11:29:34 +01:00
2015-12-31 08:39:56 +02:00
2017-01-26 10:11:37 -08:00
2017-01-20 21:00:01 -05:00
2016-09-26 17:22:30 -04:00
2016-11-11 12:34:43 +02:00
2016-09-18 21:21:13 +02:00
2016-12-13 00:29:29 +02:00