Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 4049529

Browse files
committed
Fix extra semicolon after function def in FrameBufferOSX.mm
Change-Id: I4a1b1a981096fbda616101b7d47bf8f82481c64b Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/33509 Presubmit-Ready: Lingfeng Yang <lfy@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com> Reviewed-by: Nicolas Capens <nicolascapens@google.com> Tested-by: Lingfeng Yang <lfy@google.com>
1 parent fb9c05c commit 4049529

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Main/FrameBufferOSX.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@
7474
stride = width * 4 * sizeof(uint8_t);
7575
framebuffer = buffer;
7676
return framebuffer;
77-
};
77+
}
7878

7979
void FrameBufferOSX::unlock()
8080
{
8181
framebuffer = nullptr;
82-
};
82+
}
8383
}
8484

8585
sw::FrameBuffer *createFrameBuffer(void *display, EGLNativeWindowType nativeWindow, int width, int height)

0 commit comments

Comments
 (0)