Skip to content

Commit

Permalink
Use cmath
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 24, 2025
1 parent 4b4cc09 commit 2f0a18e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions patch/0011-Use-cmath.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
From b5dba3205f2f5c2b4613bf94c1eed1208856cc4c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kirill=20M=C3=BCller?= <[email protected]>
Date: Fri, 24 Jan 2025 18:03:00 +0100
Subject: [PATCH 11/11] Use cmath

---
.../duckdb/core_functions/aggregate/algebraic/stddev.hpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/duckdb/src/include/duckdb/core_functions/aggregate/algebraic/stddev.hpp b/src/duckdb/src/include/duckdb/core_functions/aggregate/algebraic/stddev.hpp
index bdcafae95..c1cf1aef9 100644
--- a/src/duckdb/src/include/duckdb/core_functions/aggregate/algebraic/stddev.hpp
+++ b/src/duckdb/src/include/duckdb/core_functions/aggregate/algebraic/stddev.hpp
@@ -9,7 +9,7 @@
#pragma once

#include "duckdb/function/aggregate_function.hpp"
-#include <ctgmath>
+#include <cmath>

namespace duckdb {

--
2.48.1

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#pragma once

#include "duckdb/function/aggregate_function.hpp"
#include <ctgmath>
#include <cmath>

namespace duckdb {

Expand Down

0 comments on commit 2f0a18e

Please sign in to comment.