fixed build for centos
This commit is contained in:
@@ -261,6 +261,10 @@ std::string base62uuid(int l) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
template <>
|
||||
inline const char* str(const bool& v) {
|
||||
return v ? "true" : "false";
|
||||
}
|
||||
|
||||
// template<typename _Ty>
|
||||
// inline void vector_type<_Ty>::out(uint32_t n, const char* sep) const
|
||||
|
||||
+1
-1
@@ -6,9 +6,9 @@
|
||||
#include <iostream>
|
||||
#include <chrono>
|
||||
#include "monetdb_conn.h"
|
||||
#include "monetdbe.h"
|
||||
#include "threading.h"
|
||||
#include "../csv.h"
|
||||
#include "table_ext_monetdb.hpp"
|
||||
#ifdef _WIN32
|
||||
#include "winhelper.h"
|
||||
#undef max
|
||||
|
||||
+1
-4
@@ -9,9 +9,6 @@ template <class T>
|
||||
inline const char* str(const T& v) {
|
||||
return "";
|
||||
}
|
||||
template <>
|
||||
inline const char* str(const bool& v) {
|
||||
return v ? "true" : "false";
|
||||
}
|
||||
|
||||
#include<string>
|
||||
extern std::string base62uuid(int l = 6);
|
||||
Reference in New Issue
Block a user