Add noexcept qualifier to swaps and moves.

This commit is contained in:
Tom Ritchford
2015-02-10 12:57:29 -05:00
parent 69b4cd22a2
commit a963a6d10d
11 changed files with 24 additions and 24 deletions

View File

@@ -170,7 +170,7 @@ public:
{
value.clear ();
}
void swap (STArray & a)
void swap (STArray & a) noexcept
{
value.swap (a.value);
}