Skip to content

Commit

Permalink
Fix compiler warnings (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleBakker authored Oct 15, 2024
1 parent 5c9cc48 commit 4fb75db
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion melatonin/internal/cached_shadows.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ namespace melatonin::internal
{
protected:
CachedShadows() = default;
CachedShadows (const CachedShadows&) = default;
CachedShadows& operator= (const CachedShadows&) = default;
CachedShadows (CachedShadows&&) = default;
CachedShadows& operator= (CachedShadows&&) = default;

CachedShadows (std::initializer_list<ShadowParameters> shadowParameters, bool force_inner = false);
explicit CachedShadows (const std::vector<ShadowParameters>& shadowParameters, bool force_inner = false);


virtual ~CachedShadows() = default;

public:

// store a copy of the path to compare against for caching
Expand Down

0 comments on commit 4fb75db

Please sign in to comment.