-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 621fad86f53959a7984c3bd795bace9e1737981b Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Kirill=20M=C3=BCller?= <kirill@cynkra.com> | ||
Date: Wed, 5 Jun 2024 16:29:01 +0200 | ||
Subject: [PATCH] fix: Compatibility with clang19 2 | ||
|
||
--- | ||
src/duckdb/src/execution/window_executor.cpp | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/duckdb/src/execution/window_executor.cpp b/src/duckdb/src/execution/window_executor.cpp | ||
index 4d6b9b09..e649ff2e 100644 | ||
--- a/src/duckdb/src/execution/window_executor.cpp | ||
+++ b/src/duckdb/src/execution/window_executor.cpp | ||
@@ -193,7 +193,7 @@ private: | ||
template <typename T, typename OP> | ||
struct OperationCompare : public std::function<bool(T, T)> { | ||
inline bool operator()(const T &lhs, const T &val) const { | ||
- return OP::template Operation(lhs, val); | ||
+ return OP::template Operation<T>(lhs, val); | ||
} | ||
}; | ||
|
||
-- | ||
2.43.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters