소스 검색

Framebuffer needs cstring (fixes #108)

Bill Meltsner 15 년 전
부모
커밋
6bfb05359b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/modules/graphics/opengl/Framebuffer.cpp

+ 2 - 0
src/modules/graphics/opengl/Framebuffer.cpp

@@ -1,6 +1,8 @@
 #include "Framebuffer.h"
 #include <common/Matrix.h>
 
+#include <cstring> // For memcpy
+
 namespace love
 {
 namespace graphics