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>2020-03-22 03:51:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-22 03:51:15 +0300
commit1e4f6b231ce54e894b308c00e56525c085db8781 (patch)
treeaeef12e61c9ba2d46048ff73f0828a199f0c5c59 /source/blender/blenkernel/intern/volume.cc
parent9e8afa8817ed8281cefd6e21720943575a2f3284 (diff)
Cleanup: use static declaration
Diffstat (limited to 'source/blender/blenkernel/intern/volume.cc')
-rw-r--r--source/blender/blenkernel/intern/volume.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/volume.cc b/source/blender/blenkernel/intern/volume.cc
index 64d985ab7ec..c568cb66cc5 100644
--- a/source/blender/blenkernel/intern/volume.cc
+++ b/source/blender/blenkernel/intern/volume.cc
@@ -88,7 +88,7 @@ static CLG_LogRef LOG = {"bke.volume"};
* out of file descriptors or prevent other applications from writing to it.
*/
-struct VolumeFileCache {
+static struct VolumeFileCache {
/* Cache Entry */
struct Entry {
Entry(const std::string &filepath, const openvdb::GridBase::Ptr &grid)