Skip to content

Commit

Permalink
ggpo: Fix malformed template constructor
Browse files Browse the repository at this point in the history
This form is not needed for a template-class's constructor.
Fix for C++20 builds
  • Loading branch information
Wunkolo committed Dec 28, 2024
1 parent 26d5540 commit 0af6128
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/deps/ggpo/lib/ggpo/ring_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
template<class T, int N> class RingBuffer
{
public:
RingBuffer<T, N>() :
RingBuffer() :
_head(0),
_tail(0),
_size(0) {
Expand Down
2 changes: 1 addition & 1 deletion core/deps/ggpo/lib/ggpo/static_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
template<class T, int N> class StaticBuffer
{
public:
StaticBuffer<T, N>() :
StaticBuffer() :
_size(0) {
}

Expand Down

0 comments on commit 0af6128

Please sign in to comment.