Skip to content

Commit

Permalink
Fixed MSVC warning in AlignedArray template.
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBanana committed Jul 19, 2023
1 parent f2c8915 commit 087a8da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/LLGL/Container/AlignedArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#define LLGL_ALIGNED_ARRAY_H


#include <LLGL/Export.h>
#include <cstddef>


Expand All @@ -22,7 +23,7 @@ namespace LLGL
\tparam Size Specifies the size (in elements) of this array.
*/
template <typename T, std::size_t Size>
class AlignedArray
class LLGL_EXPORT AlignedArray
{

public:
Expand Down

0 comments on commit 087a8da

Please sign in to comment.