Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-05-05 05:13:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-05 05:34:24 +0300
commitab9731ccea592bbf8b6931803671b5172a19f7f9 (patch)
tree42809cd5366f942ad580fbf32219c99116f3450a
parent5fc49d9c91525543e41019550a53024a0652f018 (diff)
Cleanup: fallthrough attribute warning
Fall-through without label or default after it.
-rw-r--r--source/blender/gpu/intern/gpu_texture.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/gpu/intern/gpu_texture.c b/source/blender/gpu/intern/gpu_texture.c
index 61f86e70898..ad4831ed903 100644
--- a/source/blender/gpu/intern/gpu_texture.c
+++ b/source/blender/gpu/intern/gpu_texture.c
@@ -544,6 +544,8 @@ static bool gpu_texture_check_capacity(
return false;
}
ATTR_FALLTHROUGH;
+ default:
+ break;
}
return true;