bug fixes
This commit is contained in:
+2
-1
@@ -8,6 +8,7 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include "io.h"
|
||||
#undef ERROR
|
||||
template <typename T>
|
||||
class vector_type;
|
||||
template <>
|
||||
@@ -30,7 +31,7 @@ class ColRef : public vector_type<_Ty>
|
||||
public:
|
||||
typedef ColRef<_Ty> Decayed_t;
|
||||
const char* name;
|
||||
types::Type_t ty = types::ERROR;
|
||||
types::Type_t ty = types::Type_t::ERROR;
|
||||
ColRef() : vector_type<_Ty>(0), name("") {}
|
||||
ColRef(const uint32_t& size, const char* name = "") : vector_type<_Ty>(size), name(name) {}
|
||||
ColRef(const char* name) : name(name) {}
|
||||
|
||||
+1
-1
@@ -49,7 +49,7 @@ namespace types {
|
||||
#define ULL_Type __uint128_t
|
||||
#define LL_Type __int128_t
|
||||
#else
|
||||
#define F_INT128
|
||||
#define F_INT128(__F_)
|
||||
#define ULL_Type unsigned long long
|
||||
#define LL_Type long long
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user