mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:02:59 +00:00
[ATL] s/throw()/noexcept/ (#5799)
Mechanically replace throw() with noexcept.
This commit is contained in:
parent
fd1e158480
commit
d955b9321b
12 changed files with 311 additions and 311 deletions
|
@ -111,7 +111,7 @@ public:
|
|||
m_strPath = path.m_strPath;
|
||||
}
|
||||
|
||||
CPathT() throw()
|
||||
CPathT() noexcept
|
||||
{
|
||||
// do nothing, m_strPath initializes itself
|
||||
}
|
||||
|
@ -367,17 +367,17 @@ public:
|
|||
m_strPath.ReleaseBuffer();
|
||||
}
|
||||
|
||||
operator const StringType&() const throw()
|
||||
operator const StringType&() const noexcept
|
||||
{
|
||||
return m_strPath;
|
||||
}
|
||||
|
||||
operator PCXSTR() const throw()
|
||||
operator PCXSTR() const noexcept
|
||||
{
|
||||
return m_strPath;
|
||||
}
|
||||
|
||||
operator StringType&() throw()
|
||||
operator StringType&() noexcept
|
||||
{
|
||||
return m_strPath;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue