Commit a7429204 by Nico Weber Committed by Commit Bot

Remove some extra semicolons.

No behavior change. Bug: chromium:926235 Change-Id: I9215b4799a3c68887b8403be057180796ab5777a Reviewed-on: https://chromium-review.googlesource.com/c/1446311Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Nico Weber <thakis@chromium.org>
parent fa7ca18f
......@@ -408,7 +408,7 @@ class TIntermSwizzle : public TIntermExpression
TIntermTyped *deepCopy() const override { return new TIntermSwizzle(*this); }
TIntermSwizzle *getAsSwizzleNode() override { return this; };
TIntermSwizzle *getAsSwizzleNode() override { return this; }
bool visit(Visit visit, TIntermTraverser *it) final;
size_t getChildCount() const final;
......@@ -458,7 +458,7 @@ class TIntermBinary : public TIntermOperator
static TOperator GetMulOpBasedOnOperands(const TType &left, const TType &right);
static TOperator GetMulAssignOpBasedOnOperands(const TType &left, const TType &right);
TIntermBinary *getAsBinaryNode() override { return this; };
TIntermBinary *getAsBinaryNode() override { return this; }
void traverse(TIntermTraverser *it) final;
bool visit(Visit visit, TIntermTraverser *it) final;
......
......@@ -23,7 +23,7 @@ namespace rx
{
class BufferImpl;
class GLImplFactory;
}; // namespace rx
} // namespace rx
namespace gl
{
......
......@@ -86,10 +86,10 @@ class FramebufferState final : angle::NonCopyable
const FramebufferAttachment *getDrawBuffer(size_t drawBufferIdx) const;
size_t getDrawBufferCount() const;
GLint getDefaultWidth() const { return mDefaultWidth; };
GLint getDefaultHeight() const { return mDefaultHeight; };
GLint getDefaultSamples() const { return mDefaultSamples; };
bool getDefaultFixedSampleLocations() const { return mDefaultFixedSampleLocations; };
GLint getDefaultWidth() const { return mDefaultWidth; }
GLint getDefaultHeight() const { return mDefaultHeight; }
GLint getDefaultSamples() const { return mDefaultSamples; }
bool getDefaultFixedSampleLocations() const { return mDefaultFixedSampleLocations; }
GLint getDefaultLayers() const { return mDefaultLayers; }
bool hasDepth() const;
......
......@@ -18,7 +18,7 @@ class LoggingAnnotator : public gl::DebugAnnotator
{
public:
LoggingAnnotator() {}
~LoggingAnnotator() override{};
~LoggingAnnotator() override {}
void beginEvent(const char *eventName, const char *eventMessage) override;
void endEvent(const char *eventName) override;
void setMarker(const char *markerName) override;
......
......@@ -21,7 +21,7 @@ namespace rx
{
class GLImplFactory;
class ProgramPipelineImpl;
}; // namespace rx
} // namespace rx
namespace gl
{
......
......@@ -125,7 +125,7 @@ class TextureState final : private angle::NonCopyable
const ImageDesc &getImageDesc(TextureTarget target, size_t level) const;
const ImageDesc &getImageDesc(const ImageIndex &imageIndex) const;
TextureType getType() const { return mType; };
TextureType getType() const { return mType; }
const SwizzleState &getSwizzleState() const { return mSwizzleState; }
const SamplerState &getSamplerState() const { return mSamplerState; }
GLenum getUsage() const { return mUsage; }
......
......@@ -25,8 +25,8 @@ namespace rx
class FenceNVImpl : angle::NonCopyable
{
public:
FenceNVImpl(){};
virtual ~FenceNVImpl(){};
FenceNVImpl() {}
virtual ~FenceNVImpl() {}
virtual angle::Result set(const gl::Context *context, GLenum condition) = 0;
virtual angle::Result test(const gl::Context *context, GLboolean *outFinished) = 0;
......
......@@ -25,8 +25,8 @@ namespace rx
class SyncImpl : angle::NonCopyable
{
public:
SyncImpl(){};
virtual ~SyncImpl(){};
SyncImpl() {}
virtual ~SyncImpl() {}
virtual void onDestroy(const gl::Context *context) {}
......
......@@ -51,7 +51,7 @@ class StateManagerGL;
class WorkerContext : angle::NonCopyable
{
public:
virtual ~WorkerContext(){};
virtual ~WorkerContext() {}
virtual bool makeCurrent() = 0;
virtual void unmakeCurrent() = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment