Browse Source

LibPDF: Fix mismatched class/struct declaration

Matthew Olsson 3 years ago
parent
commit
b69488031b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibPDF/ColorSpace.h

+ 1 - 1
Userland/Libraries/LibPDF/ColorSpace.h

@@ -25,7 +25,7 @@
 
 namespace PDF {
 
-class Page;
+struct Page;
 
 class ColorSpace : public RefCounted<ColorSpace> {
 public: