clang-format

pull/629/head
Tatsuhiro Tsujikawa 2016-04-15 23:31:00 +09:00
parent cf1dd06d03
commit 8fc28a9e43
3 changed files with 11 additions and 7 deletions

View File

@ -623,7 +623,7 @@ void OptimizeConcurrentDownloadsOptionHandler::parseArg(
PrefPtr pref = PREF_OPTIMIZE_CONCURRENT_DOWNLOADS_COEFFA; PrefPtr pref = PREF_OPTIMIZE_CONCURRENT_DOWNLOADS_COEFFA;
std::string* sptr = &coeff_a; std::string* sptr = &coeff_a;
for (;;) { for (;;) {
char *end; char* end;
errno = 0; errno = 0;
auto dbl = strtod(sptr->c_str(), &end); auto dbl = strtod(sptr->c_str(), &end);
if (errno != 0 || sptr->c_str() + sptr->size() != end) { if (errno != 0 || sptr->c_str() + sptr->size() != end) {

View File

@ -76,15 +76,19 @@ const std::vector<std::string>& allMethodNames() { return rpcMethodNames; }
namespace { namespace {
std::vector<std::string> rpcNotificationsNames = { std::vector<std::string> rpcNotificationsNames = {
"aria2.onDownloadStart", "aria2.onDownloadPause", "aria2.onDownloadStop", "aria2.onDownloadStart", "aria2.onDownloadPause",
"aria2.onDownloadComplete", "aria2.onDownloadError", "aria2.onDownloadStop", "aria2.onDownloadComplete",
#ifdef ENABLE_BITTORRENT "aria2.onDownloadError",
#ifdef ENABLE_BITTORRENT
"aria2.onBtDownloadComplete", "aria2.onBtDownloadComplete",
#endif // ENABLE_BITTORRENT #endif // ENABLE_BITTORRENT
}; };
} // namespace } // namespace
const std::vector<std::string>& allNotificationsNames() { return rpcNotificationsNames; } const std::vector<std::string>& allNotificationsNames()
{
return rpcNotificationsNames;
}
namespace { namespace {
std::unique_ptr<RpcMethod> createMethod(const std::string& methodName) std::unique_ptr<RpcMethod> createMethod(const std::string& methodName)

View File

@ -1453,7 +1453,7 @@ RpcResponse SystemListMethodsRpcMethod::execute(RpcRequest req,
std::unique_ptr<ValueBase> std::unique_ptr<ValueBase>
SystemListNotificationsRpcMethod::process(const RpcRequest& req, SystemListNotificationsRpcMethod::process(const RpcRequest& req,
DownloadEngine* e) DownloadEngine* e)
{ {
auto list = List::g(); auto list = List::g();
for (auto& s : allNotificationsNames()) { for (auto& s : allNotificationsNames()) {