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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user