Remove unnecessary return statement

Change-Id: If3e3e5c2cadf61a9296ef68525205cfcec6701e4
Reviewed-on: https://skia-review.googlesource.com/c/skcms/+/835277
Auto-Submit: Kevin Lubick <kjlubick@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
Reviewed-by: John Stiles <johnstiles@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
diff --git a/src/Transform_inl.h b/src/Transform_inl.h
index 5169674..69c935e 100644
--- a/src/Transform_inl.h
+++ b/src/Transform_inl.h
@@ -1288,7 +1288,6 @@
     store(dst + 4*i, cast<U32>(to_fixed(((r - min) / range) * 1023)) <<  0
                    | cast<U32>(to_fixed(((g - min) / range) * 1023)) << 10
                    | cast<U32>(to_fixed(((b - min) / range) * 1023)) << 20);
-    return;
 }
 
 FINAL_STAGE(store_1010102, NoCtx) {