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
path: root/intern
diff options
context:
space:
mode:
authorMike Erwin <significant.bit@gmail.com>2017-04-16 18:08:26 +0300
committerMike Erwin <significant.bit@gmail.com>2017-04-16 18:08:26 +0300
commit4a41bc8ceac72f6f7be3067857c0ec35db5a039a (patch)
tree82d201318e13bf2619cffcb9b29b7ad80e114465 /intern
parent30249499c4ed6e398bd43b0bfb219e6a7b79e522 (diff)
Gawain: fix compiler warnings
vertex_format.c implements both public and private functions, so needs to include the private header. Follow-up to 7c57ca5109793c54f34adfd396c41b1be163d61f
Diffstat (limited to 'intern')
-rw-r--r--intern/gawain/src/vertex_format.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/gawain/src/vertex_format.c b/intern/gawain/src/vertex_format.c
index d00a143e780..443cb1db920 100644
--- a/intern/gawain/src/vertex_format.c
+++ b/intern/gawain/src/vertex_format.c
@@ -10,6 +10,7 @@
// the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
#include "vertex_format.h"
+#include "vertex_format_private.h"
#include <stddef.h>
#include <string.h>