mirror of
https://github.com/aria2/aria2.git
synced 2025-04-07 06:27:37 +03:00
Require -std=c++11 and use std::shared_ptr instead of SharedHandle
This commit is contained in:
parent
126a4bde61
commit
07d270c87e
709 changed files with 6305 additions and 6878 deletions
|
@ -75,7 +75,7 @@ void XmlRpcRequestParserController::popArrayFrame()
|
|||
}
|
||||
|
||||
void XmlRpcRequestParserController::setCurrentFrameValue
|
||||
(const SharedHandle<ValueBase>& value)
|
||||
(const std::shared_ptr<ValueBase>& value)
|
||||
{
|
||||
currentFrame_.value_ = value;
|
||||
}
|
||||
|
@ -86,7 +86,7 @@ void XmlRpcRequestParserController::setCurrentFrameName
|
|||
currentFrame_.name_ = name;
|
||||
}
|
||||
|
||||
const SharedHandle<ValueBase>&
|
||||
const std::shared_ptr<ValueBase>&
|
||||
XmlRpcRequestParserController::getCurrentFrameValue() const
|
||||
{
|
||||
return currentFrame_.value_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue