From 73d98aace4f74acc39d8de33484c8aec8e917739 Mon Sep 17 00:00:00 2001 From: "bsalomon@google.com" Date: Tue, 13 Mar 2012 14:41:19 +0000 Subject: [PATCH] Fix missing return statement git-svn-id: http://skia.googlecode.com/svn/trunk@3373 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/gpu/GrDrawTarget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpu/GrDrawTarget.h b/src/gpu/GrDrawTarget.h index 488b5bb..629963b 100644 --- a/src/gpu/GrDrawTarget.h +++ b/src/gpu/GrDrawTarget.h @@ -425,7 +425,7 @@ public: * Query to find out if the vertex or index source is reserved. */ bool hasReservedVerticesOrIndices() const { - kReserved_GeometrySrcType == this->getGeomSrc().fVertexSrc || + return kReserved_GeometrySrcType == this->getGeomSrc().fVertexSrc || kReserved_GeometrySrcType == this->getGeomSrc().fIndexSrc; } -- 2.7.4