mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-22 06:04:01 -06:00
Fixing Linux build
GCC 4.8 does not fully support C++11 and in-class char array initialization
This commit is contained in:
parent
4b35ebe6e5
commit
661c91a821
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ struct stl_neighbors {
|
|||
|
||||
struct stl_stats {
|
||||
stl_stats() { memset(&header, 0, 81); }
|
||||
char header[81] = "";
|
||||
char header[81];
|
||||
stl_type type = (stl_type)0;
|
||||
uint32_t number_of_facets = 0;
|
||||
stl_vertex max = stl_vertex::Zero();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue