renderer_opengl: Correct forward declaration of FramebufferLayout

This is actually a struct, not a class, which can lead to compilation
warnings.
This commit is contained in:
Lioncash 2018-12-26 17:32:30 -05:00 committed by fearlessTobi
parent 096e2a7ceb
commit d2aac218a6

View file

@ -14,7 +14,7 @@
#include "video_core/renderer_opengl/gl_state.h"
namespace Layout {
class FramebufferLayout;
struct FramebufferLayout;
}
namespace OpenGL {