[Issue] N/A
[Problem] Deprecated throw()
[Solution] Used noexcept
Change-Id: I75655e7d8a242a9df5e9a6f150b6f956c024bf4f
namespace services
{
-HistoryItem::HistoryItem(HistoryItem && other) throw()
+HistoryItem::HistoryItem(HistoryItem && other) noexcept
{
try {
if (this != &other) {
}
-HistoryItem & HistoryItem::operator=(HistoryItem && other) throw()
+HistoryItem & HistoryItem::operator=(HistoryItem && other) noexcept
{
if (this != &other) {
m_url = std::move(other.m_url);
const std::string & title,
tools::BrowserImagePtr favicon,
tools::BrowserImagePtr thumbnail = std::make_shared<tools::BrowserImage>());
- HistoryItem(HistoryItem && other) throw();
+ HistoryItem(HistoryItem && other) noexcept;
HistoryItem(int id, const std::string& url);
HistoryItem(const HistoryItem& source);
virtual ~HistoryItem();