Remove extraneous semicolon. NFC.

pull/479/head
Ryan Pavlik 2019-08-21 11:07:15 -05:00 committed by whitequark
parent 78819ffca3
commit b8ee0e941b
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ public:
const Camera &GetCamera() const override { return camera; }
// ViewportCanvas interface.
void SetCamera(const Camera &camera) override { this->camera = camera; };
void SetCamera(const Camera &camera) override { this->camera = camera; }
void SetLighting(const Lighting &lighting) override { this->lighting = lighting; }
void DrawLine(const Vector &a, const Vector &b, hStroke hcs) override;