diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-23 05:58:29 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-23 07:42:30 +0100 |
| commit | c69de61bf3873e5de4bb035ee965881a99789142 (patch) | |
| tree | 80937253965344272c4b9f16448215d1ad433145 /src/light.cpp | |
| parent | 9f6d6555a2999256d5eceddca1d16329c401804c (diff) | |
src/object: use forward declaration for dt
Diffstat (limited to 'src/light.cpp')
| -rw-r--r-- | src/light.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/light.cpp b/src/light.cpp index 333fb327..0e36fd6d 100644 --- a/src/light.cpp +++ b/src/light.cpp @@ -53,7 +53,7 @@ light::operator light_proto() const } object_type light::type() const noexcept { return object_type::light; } -void light::update(size_t, Ns) {} +void light::update(size_t, const Ns&) {} bool light::is_dynamic() const { return true; } bool light::is_virtual() const { return true; } |
