Skip to content

Commit 4151480

Browse files
committed
Add LLVM19
1 parent 4e5d682 commit 4151480

File tree

12 files changed

+117
-92
lines changed

12 files changed

+117
-92
lines changed

include/clasp/clbind/class.h

-6
Original file line numberDiff line numberDiff line change
@@ -754,12 +754,6 @@ template <class T, class Base = no_bases, class WrappedType = reg::null_type> st
754754

755755
return *this;
756756
}
757-
758-
public:
759-
template <class Getter, class Setter>
760-
class_& def_property(const std::string& prefix, Getter g, Setter s, const char* docstring = "") {
761-
this->property_impl(prefix, g, s);
762-
}
763757
};
764758
} // namespace clbind
765759

include/clasp/clbind/policies.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ template <class... PTypes> struct policies {
130130
bool m_auto_export = true;
131131
bool m_setf = false;
132132
void describe() {
133-
printf("%s:%d Descibing Policy\n", __FILE__, __LINE__);
133+
fmt::print("{}:{} Descibing Policy\n", __FILE__, __LINE__);
134134
if (this->m_lambda_list != "") {
135-
printf("lambda_list = %s\n", this->m_lambda_list.c_str());
135+
fmt::print("lambda_list = {}\n", this->m_lambda_list);
136136
} else {
137-
printf("keyword_list = %s\n", this->keyword_list().c_str());
137+
fmt::print("keyword_list = {}\n", this->keywordList());
138138
}
139-
printf("Docstring = %s\n", this->m_doc_string.c_str());
139+
fmt::print("Docstring = {}\n", this->m_doc_string.c_str());
140140
}
141141
std::string keywordList() const {
142142
if (this->m_keywords.size() == 0) {

include/clasp/gctools/exposeFunctions.h

-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ class DerivableFrontendActionFactory;
9090
#undef DECLARE_FORWARDS
9191
#endif
9292
#endif
93-
namespace gctools {
9493

9594
////////////////////////////////////////////////////////////
9695
//
@@ -108,7 +107,6 @@ namespace gctools {
108107
#undef GC_STAMP_SELECTORS
109108
#endif
110109
#endif
111-
}; // namespace gctools
112110

113111
extern "C" {
114112
bool valid_stamp(gctools::stamp_t kind);

include/clasp/gctools/gc_interface.h

-3
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ class DerivableFrontendActionFactory;
9494
#endif
9595
#endif
9696

97-
namespace gctools {
98-
9997
////////////////////////////////////////////////////////////
10098
//
10199
// Define the stamps
@@ -112,7 +110,6 @@ namespace gctools {
112110
#undef GC_STAMP_SELECTORS
113111
#endif
114112
#endif
115-
}; // namespace gctools
116113

117114
extern "C" {
118115
bool valid_stamp(gctools::stamp_t kind);

include/clasp/gctools/gcalloc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ template <class OT> class GC {
839839
size_t capacity = length + 1;
840840
size_t size = sizeof_container_with_header<OT>(capacity);
841841
if (static_container_p)
842-
return GCObjectAllocator<OT>::template static_allocate_kind(
842+
return GCObjectAllocator<OT>::static_allocate_kind(
843843
Header_s::BadgeStampWtagMtag::make_StampWtagMtag(OT::static_ValueStampWtagMtag), size, length,
844844
std::forward<ARGS>(args)...);
845845
else

include/clasp/gctools/memoryManagement.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1030,15 +1030,15 @@ extern size_t global_sizeof_fwd;
10301030
inline size_t Align(size_t size) { return ((AlignUp(size) >= global_sizeof_fwd) ? AlignUp(size) : global_sizeof_fwd); };
10311031

10321032
// Manually define these for the sake of As<Fixnum_sp> etc.
1033-
template <> struct gctools::GCStamp<core::Fixnum_I> {
1033+
template <> struct GCStamp<core::Fixnum_I> {
10341034
public:
10351035
static GCStampEnum const StampWtag = STAMPWTAG_core__Fixnum_dummy_O;
10361036
};
1037-
template <> struct gctools::GCStamp<core::SingleFloat_I> {
1037+
template <> struct GCStamp<core::SingleFloat_I> {
10381038
public:
10391039
static GCStampEnum const StampWtag = STAMPWTAG_core__SingleFloat_dummy_O;
10401040
};
1041-
template <> struct gctools::GCStamp<core::Character_I> {
1041+
template <> struct GCStamp<core::Character_I> {
10421042
public:
10431043
static GCStampEnum const StampWtag = STAMPWTAG_core__Character_dummy_O;
10441044
};

0 commit comments

Comments
 (0)