danicoin/src/rpc
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
..
CMakeLists.txt Adding HTTP Digest Auth (but not yet enabled) 2016-12-13 00:19:54 -05:00
core_rpc_server.cpp Fix invalid + of std::string and int 2017-01-26 10:11:37 -08:00
core_rpc_server.h p2p: always recreate a new peer id on startup 2017-01-22 11:37:55 +00:00
core_rpc_server_commands_defs.h Merge pull request #1569 2017-01-15 20:32:57 -05:00
core_rpc_server_error_codes.h updated copyright year 2015-12-31 08:39:56 +02:00