Fix annoying Property.h warning

This commit is contained in:
DankParrot 2020-08-12 17:58:24 -07:00
parent d2ff0647dd
commit 17c77dc57c
1 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,9 @@ namespace Feather
}
catch (const std::out_of_range& err)
{
// ignore unreferenced local var
(void)err;
// process default value from constructor
SetValue(value);
}