1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-03 17:13:17 +03:00

chore(build): no more need for this oververbose messages on build stage

This commit is contained in:
Leonid Fedorov
2025-08-04 10:18:23 +00:00
committed by Leonid Fedorov
parent 0f3f73ddb5
commit a7e5115ad6

View File

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