1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

libstdc++ in CI

This commit is contained in:
Leonid Fedorov
2025-07-14 18:48:52 +00:00
parent 19549d5a40
commit 1be8b08dc8
7 changed files with 22 additions and 17 deletions

View File

@@ -3,6 +3,7 @@
#if (_LIBCPP_VERSION)
#include <unordered_set>
#include <unordered_map>
#pragma message("libcpp do not support tr1, so we are using std::unordered_[set|map] instead")
namespace std
{
namespace tr1
@@ -15,6 +16,8 @@ using std::unordered_set;
} // namespace tr1
} // namespace std
#else
#pragma message("Using std::tr1::unordered_[set|map]")
#include <tr1/unordered_set>
#include <tr1/unordered_map>
#endif