You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've searched other open/closed issues for duplicates before opening up this new issue.
Report
What did you do?
Just installed via CocoaPods.
What did you expect to happen?
No warnings or errors.
What happened instead?
Don't know how but there are 4 non-compilable sources in the Compile Sources list. I forked the Down project and see that there are not in the Compile Sources list. Odd.
case_fold_switch.inc
COPYING
entities.inc
module.modulemap
latex.c line 185: realurllen = url_len; gives warning: Implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int'
A type casting solves the issue. realurllen = (int) url_len;
P.S: Thank you for this great spec! It saved a life!
The text was updated successfully, but these errors were encountered:
Report
What did you do?
Just installed via CocoaPods.
What did you expect to happen?
No warnings or errors.
What happened instead?
Don't know how but there are 4 non-compilable sources in the Compile Sources list. I forked the Down project and see that there are not in the Compile Sources list. Odd.
latex.c
line 185:realurllen = url_len;
gives warning:Implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int'
A type casting solves the issue.
realurllen = (int) url_len;
P.S: Thank you for this great spec! It saved a life!
The text was updated successfully, but these errors were encountered: