This is an automated email from the ASF dual-hosted git repository.

philo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new 173b45374a [MINOR] Use `static constexpr` to follow C++ style (#10402)
173b45374a is described below

commit 173b45374a0e6c21cd448c17942fcc61e3c234c5
Author: Jiaan Geng <[email protected]>
AuthorDate: Tue Aug 12 11:29:18 2025 +0800

    [MINOR] Use `static constexpr` to follow C++ style (#10402)
---
 cpp/core/utils/ObjectStore.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/core/utils/ObjectStore.h b/cpp/core/utils/ObjectStore.h
index 476c406e73..182d659526 100644
--- a/cpp/core/utils/ObjectStore.h
+++ b/cpp/core/utils/ObjectStore.h
@@ -32,7 +32,7 @@ namespace gluten {
 // for the object in the store.
 using StoreHandle = int32_t;
 using ObjectHandle = int64_t;
-constexpr static ObjectHandle kInvalidObjectHandle = -1;
+static constexpr ObjectHandle kInvalidObjectHandle = -1;
 
 template <typename T>
 struct SafeSizeOf {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to