diff options
author | Joseph Heenan <joseph@emobix.co.uk> | 2015-12-18 20:48:48 +0000 |
---|---|---|
committer | Joseph Heenan <joseph@emobix.co.uk> | 2015-12-18 21:08:18 +0000 |
commit | f48a76c33db71891126211539fb3f167e5f96d71 (patch) | |
tree | 03cc3b7820f8fec7716c044cc4725bb6238f81f6 /platform/ios/Classes/MuPrintPageRenderer.h | |
parent | 39389bba83b4b1d64c8c540cb7c7edbe09ea4009 (diff) | |
download | mupdf-f48a76c33db71891126211539fb3f167e5f96d71.tar.xz |
iOS: Fix two warnings in MuPrintPageRenderer with latest Xcode
MuPrintPageRenderer.h:2:9: error: 'MuDocRef.h' file not found with <angled> include; use "quotes" instead
MuPrintPageRenderer.m:35:16: warning: if statement has empty body [-Wempty-body]
MuPrintPageRenderer.m:35:16: note: put the semicolon on a separate line to silence this warning
Diffstat (limited to 'platform/ios/Classes/MuPrintPageRenderer.h')
-rw-r--r-- | platform/ios/Classes/MuPrintPageRenderer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuPrintPageRenderer.h b/platform/ios/Classes/MuPrintPageRenderer.h index f043e0b1..8a48c6e3 100644 --- a/platform/ios/Classes/MuPrintPageRenderer.h +++ b/platform/ios/Classes/MuPrintPageRenderer.h @@ -1,5 +1,6 @@ #import <UIKit/UIKit.h> -#import <MuDocRef.h> + +#import "MuDocRef.h" @interface MuPrintPageRenderer : UIPrintPageRenderer |