tamasmeszaros / libnest2d

2D irregular bin packaging and nesting library written in modern C++
GNU Lesser General Public License v3.0
315 stars 104 forks source link

Avoid boost build error #34

Open Megidd opened 3 years ago

Megidd commented 3 years ago

The error while building boost:

error: no template named 'conditional_t' in namespace 'std'; did you mean 'conditional'?

The template alias conditional_t is not available in C++11; it was added in C++14, as were most of the other type trait *_t versions. Therefore, C++14 is required to build the boost library.

Screen Shot 2021-04-24 at 17 03 11