mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #262] Compiling error in GCC<5 #210
Labels
No labels
awaiting user feedback
bug
cmake
cmake
docs
feature request
in progress
long term
medium term
medium term
pull-request
question
question
ready to close
short term
under investigation
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/libxlsxwriter#210
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @RaFaeL-NN on GitHub (Jan 8, 2020).
Original GitHub issue: https://github.com/jmcnamara/libxlsxwriter/issues/262
Originally assigned to: @jmcnamara on GitHub.
I am using GCC 3.4.5 and get error
It's because of "deprecated" from C++14. GCC supports C++14 from version 5 ("deprecated" from 4.9). Can you change
#ifdef __GNUC__in common.h to
#if __GNUC__ >=5?
@jmcnamara commented on GitHub (Jan 9, 2020):
Done. Fixed on master.
@RaFaeL-NN commented on GitHub (Jan 9, 2020):
I think "> 5" is not right, " >= 5" is
@jmcnamara commented on GitHub (Jan 9, 2020):
I fixed that after the push. It is on master already.
@jmcnamara commented on GitHub (Jan 9, 2020):
Thanks by the way.