Sfoglia il codice sorgente

renderer_opengl: Correct forward declaration of FramebufferLayout

This is actually a struct, not a class, which can lead to compilation
warnings.
Lioncash 7 anni fa
parent
commit
67fa21e143
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/video_core/renderer_opengl/renderer_opengl.h

+ 1 - 1
src/video_core/renderer_opengl/renderer_opengl.h

@@ -17,7 +17,7 @@ class EmuWindow;
 }
 
 namespace Layout {
-class FramebufferLayout;
+struct FramebufferLayout;
 }
 
 namespace OpenGL {