[GH-ISSUE #71] Potential bug in include headers #63

Closed
opened 2026-05-05 11:35:06 -06:00 by gitea-mirror · 2 comments
Owner

Originally created by @azplanlos on GitHub (Aug 12, 2016).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/71

Originally assigned to: @jmcnamara on GitHub.

Hi,

I think there is a bug in the projects include header file include/xlsxwriter/common.h:

Two files are referenced by using a relative path that doesn't exist. Xcode is complaining about this when adding the library to my own framework.

#include "xlsxwriter/third_party/queue.h"
#include "xlsxwriter/third_party/tree.h"

Corrected like this it is compiling and working.

#include "third_party/queue.h"
#include "third_party/tree.h"

If this is really a bug, please correct it or let me know so I can open a pull request.

Andreas

Originally created by @azplanlos on GitHub (Aug 12, 2016). Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/71 Originally assigned to: @jmcnamara on GitHub. Hi, I think there is a bug in the projects include header file include/xlsxwriter/common.h: Two files are referenced by using a relative path that doesn't exist. Xcode is complaining about this when adding the library to my own framework. ``` #include "xlsxwriter/third_party/queue.h" #include "xlsxwriter/third_party/tree.h" ``` Corrected like this it is compiling and working. ``` #include "third_party/queue.h" #include "third_party/tree.h" ``` If this is really a bug, please correct it or let me know so I can open a pull request. Andreas
gitea-mirror 2026-05-05 11:35:06 -06:00
  • closed this issue
  • added the
    question
    label
Author
Owner

@jmcnamara commented on GitHub (Aug 12, 2016):

Hi,

Thanks for the report. I'll have a look at it.

John

<!-- gh-comment-id:239485940 --> @jmcnamara commented on GitHub (Aug 12, 2016): Hi, Thanks for the report. I'll have a look at it. John
Author
Owner

@jmcnamara commented on GitHub (Jan 11, 2017):

Fixed in version 0.5.6.

Thanks for the report.

<!-- gh-comment-id:271738999 --> @jmcnamara commented on GitHub (Jan 11, 2017): Fixed in version 0.5.6. Thanks for the report.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/libxlsxwriter#63
No description provided.