Reputation: 43
I'm writing a program that makes heavy use of C++ 20 and newer features. The problem is that in the project I need the stxxl library, which is compiled exclusively on C++ 14 . If I try to include it as described in this guide (via .h files and .lib), Visual Studio throws a lot of errors related to the fact that some old features and language constructs no longer work in new versions.
Is it possible to somehow use this library in the project?
Upvotes: 2
Views: 235