Hello! I ran into a following problem. I downloaded Code::Blocks 20.03 MinGW version here. If I select C++14 and try to compile program using bits/stdc++ everything is OK.
But when I select C++17 a mistake occurs:
If I don't use bits/stdc++.h but include the libraries separately everything works with C++14 and with C++17. So the problem is exactly in this library. What I need to do to make bits/stdc++ working with C++17?
UPD: this helps:#define _GLIBCXX_FILESYSTEM
#include <bits/stdc++.h>