diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-12 22:45:30 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-12 22:45:30 +0100 |
commit | 1d1c256eea43a3d0685919ed2997e10990ef639f (patch) | |
tree | 99f85ea9d8852ba3e33a05df699f028f29d3f9d1 /src/crepe/Component.cpp | |
parent | 23196be83778973d9688cc5d465e4e4a16476568 (diff) |
`make format`
Diffstat (limited to 'src/crepe/Component.cpp')
-rw-r--r-- | src/crepe/Component.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/crepe/Component.cpp b/src/crepe/Component.cpp index 1aed507..ae76e65 100644 --- a/src/crepe/Component.cpp +++ b/src/crepe/Component.cpp @@ -14,7 +14,4 @@ unique_ptr<Component> Component::save() const { return unique_ptr<Component>(new Component(*this)); } -void Component::restore(const Component & snapshot) { - *this = snapshot; -} - +void Component::restore(const Component & snapshot) { *this = snapshot; } |