change clang-format
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
497f96a574
commit
f925d90d6b
33 changed files with 217 additions and 254 deletions
|
|
@ -14,7 +14,7 @@ auto IkarusProject::get_name() const -> std::string_view {
|
|||
return _name;
|
||||
}
|
||||
|
||||
auto IkarusProject::get_path() const -> std::filesystem::path const& {
|
||||
auto IkarusProject::get_path() const -> std::filesystem::path const & {
|
||||
return _path;
|
||||
}
|
||||
|
||||
|
|
@ -55,8 +55,7 @@ auto IkarusProject::get_property(IkarusId id, IkarusPropertyType type) -> Ikarus
|
|||
return _properties.emplace(id, std::make_unique<IkarusToggleProperty>(this, id)).first->second.get();
|
||||
case IkarusPropertyType_Number:
|
||||
return _properties.emplace(id, std::make_unique<IkarusNumberProperty>(this, id)).first->second.get();
|
||||
case IkarusPropertyType_Text:
|
||||
return _properties.emplace(id, std::make_unique<IkarusTextProperty>(this, id)).first->second.get();
|
||||
case IkarusPropertyType_Text: return _properties.emplace(id, std::make_unique<IkarusTextProperty>(this, id)).first->second.get();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue