1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Corrects SConstruct; applies default initialisation in Struct.cpp.

This commit is contained in:
Thomas Harte
2020-05-09 18:11:50 -04:00
parent 40b60fe5d4
commit 4c6d0f7fa0
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ template <typename Type> bool Reflection::get(const Struct &target, const std::s
}
template <typename Type> Type Reflection::get(const Struct &target, const std::string &name) {
Type value;
Type value{};
get(target, name, value);
return value;
}